blob: 251ca0d76153a06686857d67560ace7447b9549f [file] [log] [blame]
package grails.gorm.validation
/**
* Represents an entity that is constrained
*
* @author Graeme Rocher
* @since 6.0
*/
interface ConstrainedEntity {
/**
* @return The constrained property instances
*/
Map<String, ConstrainedProperty> getConstrainedProperties()
}