Annotation 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;
}