Interface ApplicationRepository<D>

All Superinterfaces:
org.springframework.data.repository.CrudRepository<D,String>, com.broadleafcommerce.common.extension.DomainTypeAware, org.springframework.data.repository.Repository<D,String>
All Known Subinterfaces:
JpaUserApplicationRepository<D>

@NoRepositoryBean public interface ApplicationRepository<D> extends org.springframework.data.repository.CrudRepository<D,String>, com.broadleafcommerce.common.extension.DomainTypeAware
Handle persistence operations related to Application
Author:
Jeff Fischer
  • Method Summary

    Modifier and Type
    Method
    Description
     

    Methods inherited from interface org.springframework.data.repository.CrudRepository

    count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findAll, findAllById, findById, save, saveAll

    Methods inherited from interface com.broadleafcommerce.common.extension.DomainTypeAware

    getDomainType
  • Method Details

    • findByIdentifierTypeAndIdentifierValueAndDeactivatedIsFalse

      Optional<D> findByIdentifierTypeAndIdentifierValueAndDeactivatedIsFalse(String identifierType, String identifierValue)