Interface DataPresentation.FullData

Enclosing interface:
DataPresentation<I extends Comparable<? super I> & Serializable>

public static interface DataPresentation.FullData
A marker interface that can be used to represent a full data object. This interface can be used as a parameter in validation annotations to specify that certain fields should be validated when performing full data operations.

Example:


 @NotNull(groups = DataPresentation.FullData.class)
 private Object yourField;
 
Since:
0.1.0