Annotation Interface ReadOnly


@Documented @Target({FIELD,TYPE,METHOD}) @Retention(RUNTIME) public @interface ReadOnly
Make a field/type to be a read-only filed/type. Namely, a field/type annotated with this annotation is unmodifiable by browsers. Still, a server can change the field/type value.
 @Controller
 class MyController {
     // Field 'name' is unmodifiable by browsers.
     @Autowired
     @ReadOnly
     SList<String> name;
 }