Class FolderValidator

java.lang.Object
com.broadleafcommerce.asset.service.validation.FolderValidator
All Implemented Interfaces:
com.broadleafcommerce.data.tracking.core.mapping.validation.EntityValidator

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

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
     
    void
    Lazy injection since this validator is itself a service component.
    boolean
    supports(Class<?> serviceClass, com.broadleafcommerce.data.tracking.core.context.ContextInfo context)
     
    void
    validate(Object businessInstance, org.springframework.validation.Errors errors, com.broadleafcommerce.data.tracking.core.context.ContextInfo context)
     
    protected void
    validateLastUpdatedDate(Folder folder, org.springframework.validation.Errors errors)
     
    protected void
    validateName(org.springframework.validation.Errors errors)
     
    protected void
    validateParentFolderId(Folder folder, org.springframework.validation.Errors errors, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo)
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface com.broadleafcommerce.data.tracking.core.mapping.validation.EntityValidator

    validateForCreate, validateForReplace, validateForUpdate
  • Constructor Details

    • FolderValidator

      public FolderValidator()
  • Method Details

    • setFolderService

      @Autowired @Lazy public void setFolderService(FolderService<Folder> folderService)
      Lazy injection since this validator is itself a service component. This avoids circular dependency exceptions
      Parameters:
      folderService - the folder 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
    • validateName

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

      protected void validateLastUpdatedDate(Folder folder, org.springframework.validation.Errors errors)
    • validateParentFolderId

      protected void validateParentFolderId(Folder folder, org.springframework.validation.Errors errors, com.broadleafcommerce.data.tracking.core.context.ContextInfo contextInfo)
    • getFolderService

      @NonNull protected FolderService<Folder> getFolderService()