2.2.4 @Hidden
The @Hidden annotation indicates that the member (property, collection or action) to which it is
applied should never be displayed in the UI. For example:
public class Customer {
private int internalId;
@Hidden
public int getInternalId() {
return internalId;
}
@Hidden
public void updateStatus() { ... }
}