Hiding properties
Properties can be hidden at the domain-level, indicating that they are not visible to the end-user.
|
It is also possible to use @Property#hidden() to hide an action at the domain layer. |
For example:
import lombok.Getter;
import lombok.Setter;
public class Customer {
@Property(hidden=Where.EVERYWHERE)
@Getter @Setter
private int internalId;
// ...
}
The acceptable values for the where parameter are:
-
Where.EVERYWHEREorWhere.ANYWHEREThe property should be hidden everywhere.
-
Where.ANYWHERESynonym for everywhere.
-
Where.OBJECT_FORMSThe property should be hidden when displayed within an object form.
-
Where.PARENTED_TABLESThe property should be hidden when displayed as a column of a table within a parent object’s collection.
-
Where.STANDALONE_TABLESThe property should be hidden when displayed as a column of a table showing a standalone list of objects, for example as returned by a repository query.
-
Where.ALL_TABLESThe property should be hidden when displayed as a column of a table, either an object’s * collection or a standalone list. This combines
PARENTED_TABLESandSTANDALONE_TABLES. -
Where.NOWHEREThe property should not be hidden, overriding any other metadata/conventions that would normally cause the property to be hidden.
For example, if a property is annotated with @Title, then normally this should be hidden from all tables.
Annotating with @Property(where=Where.NOWHERE) overrides this.
|
The RestfulObjects viewer has only partial support for these |