站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > JBoss Seam 1.1.0 API 英文版文档

ReadOnly (JBoss Seam API Documentation) - JBoss Seam 1.1.0 API 英文版文档


org.jboss.seam.annotations
Annotation Type ReadOnly


@Target(value={TYPE,METHOD})
@Retention(value=RUNTIME)
@Documented
public @interface ReadOnly

Marks a component as immutable, not needing replication once created, or a method of the component as read-only, not mutating the state. This allows optimization of performance of JavaBean components in a clustered environment, without the need to implement Mutable.

Author:
Gavin King
See Also:
Mutable