Class UserRoleValidator

  • All Implemented Interfaces:
    com.broadleafcommerce.data.tracking.core.mapping.validation.EntityValidator

    public class UserRoleValidator
    extends Object
    implements com.broadleafcommerce.data.tracking.core.mapping.validation.EntityValidator
    Validations for UserRole.
    Author:
    Samarth Dhruva (samarthd)
    • Constructor Detail

      • UserRoleValidator

        public UserRoleValidator()
    • Method Detail

      • setUserRoleService

        @Autowired
        @Lazy
        public void setUserRoleService​(UserRoleService<UserRole> userRoleService)
        Lazy injection since this validator is itself a service component. This avoids circular dependency exceptions
        Parameters:
        userRoleService - the role service
      • supports

        public boolean supports​(Class<?> serviceClass,
                                com.broadleafcommerce.data.tracking.core.context.ContextInfo context)
        Specified by:
        supports in interface com.broadleafcommerce.data.tracking.core.mapping.validation.EntityValidator
      • validate

        public void validate​(@NonNull
                             Object businessInstance,
                             @NonNull
                             org.springframework.validation.Errors errors,
                             com.broadleafcommerce.data.tracking.core.context.ContextInfo context)
        Specified by:
        validate in interface com.broadleafcommerce.data.tracking.core.mapping.validation.EntityValidator
      • validateForReplace

        public void validateForReplace​(Object businessInstance,
                                       org.springframework.validation.Errors errors,
                                       com.broadleafcommerce.data.tracking.core.context.ContextInfo context)
        Specified by:
        validateForReplace in interface com.broadleafcommerce.data.tracking.core.mapping.validation.EntityValidator
      • validateName

        protected void validateName​(org.springframework.validation.Errors errors)
      • validateParentRoleId

        protected void validateParentRoleId​(UserRole role,
                                            org.springframework.validation.Errors errors)
        Traverses the full ancestry of the role to confirm each ancestor still exists and there are no cycles, either in the case that the ancestors already had cycles, or in the case that this role itself causes a cycle. See validateRoleAncestry(UserRole, Errors) for more information.
        Parameters:
        role - the role to validate
        errors - the errors object bound to the role on which errors can be registered
      • prefixWithEntityValidationMessageKey

        protected String prefixWithEntityValidationMessageKey​(String errorCode)