Package io.jmix.dynmodel
Record Class DynamicValidationContext
java.lang.Object
java.lang.Record
io.jmix.dynmodel.DynamicValidationContext
- Record Components:
entity- entity instance being validatedmetaClass- entity metadata classconstraint- entity constraint definitiongroups- active validation groups
public record DynamicValidationContext(Object entity, MetaClass metaClass, DynamicEntityConstraintDefinition constraint, List<Class<?>> groups)
extends Record
Carries data required by a dynamic entity-level constraint validator.
-
Constructor Summary
ConstructorsConstructorDescriptionDynamicValidationContext(Object entity, MetaClass metaClass, DynamicEntityConstraintDefinition constraint, List<Class<?>> groups) Creates an instance of aDynamicValidationContextrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theconstraintrecord component.entity()Returns the value of theentityrecord component.final booleanIndicates whether some other object is "equal to" this one.groups()Returns the value of thegroupsrecord component.final inthashCode()Returns a hash code value for this object.Returns the value of themetaClassrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
DynamicValidationContext
public DynamicValidationContext(Object entity, MetaClass metaClass, DynamicEntityConstraintDefinition constraint, List<Class<?>> groups) Creates an instance of aDynamicValidationContextrecord class.- Parameters:
entity- the value for theentityrecord componentmetaClass- the value for themetaClassrecord componentconstraint- the value for theconstraintrecord componentgroups- the value for thegroupsrecord component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
entity
Returns the value of theentityrecord component.- Returns:
- the value of the
entityrecord component
-
metaClass
Returns the value of themetaClassrecord component.- Returns:
- the value of the
metaClassrecord component
-
constraint
Returns the value of theconstraintrecord component.- Returns:
- the value of the
constraintrecord component
-
groups
Returns the value of thegroupsrecord component.- Returns:
- the value of the
groupsrecord component
-