Uses of Class
com.skava.accounts.model.entity.CostCentreEntity
Packages that use CostCentreEntity
Package
Description
Accounts Domain Model Declarations.
Accounts Entity Model Declarations.
Accounts Repository Declarations.
Accounts Service Implementations.
Accounts Utility Implementations.
-
Uses of CostCentreEntity in com.skava.accounts.model.domain
Methods in com.skava.accounts.model.domain that return CostCentreEntityModifier and TypeMethodDescriptionCostCentreDO.toEntity()
toEntity - Used to convert entity to domain object.Methods in com.skava.accounts.model.domain with parameters of type CostCentreEntityModifier and TypeMethodDescriptionCostCentreDO.fromEntity
(CostCentreEntity costCentre) fromEntity - Used to convert domain object to entity.BudgetDO.toEntity
(CostCentreEntity costCentre) ToEntity.BudgetDO.toEntityBudget
(CostCentreEntity costCentre) ToEntity. -
Uses of CostCentreEntity in com.skava.accounts.model.entity
Fields in com.skava.accounts.model.entity with type parameters of type CostCentreEntityModifier and TypeFieldDescriptionfinal com.querydsl.core.types.dsl.ListPath<CostCentreEntity,
QCostCentreEntity> QAccountsEntity.costCenters
Constructor parameters in com.skava.accounts.model.entity with type arguments of type CostCentreEntityModifierConstructorDescriptionQCostCentreEntity
(com.querydsl.core.types.Path<? extends CostCentreEntity> path) QCostCentreEntity
(Class<? extends CostCentreEntity> type, com.querydsl.core.types.PathMetadata metadata, com.querydsl.core.types.dsl.PathInits inits) -
Uses of CostCentreEntity in com.skava.accounts.repository
Methods in com.skava.accounts.repository that return types with arguments of type CostCentreEntityModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<CostCentreEntity>
CostCentreRepository.findAll
(org.springframework.data.jpa.domain.Specification<CostCentreEntity> specification, org.springframework.data.domain.Pageable pageRequest) Find all CostCentreEntities based on inputs.org.springframework.data.domain.Page<CostCentreEntity>
CostCentreRepository.findAllByAccountId
(long accountId, org.springframework.data.domain.Pageable pageRequest) Find CostCentreEntities by account id.CostCentreRepository.findByIdAndAccountId
(long id, long accountId) To check if a Contract Exists By the given id and accountId.Method parameters in com.skava.accounts.repository with type arguments of type CostCentreEntityModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<CostCentreEntity>
CostCentreRepository.findAll
(org.springframework.data.jpa.domain.Specification<CostCentreEntity> specification, org.springframework.data.domain.Pageable pageRequest) Find all CostCentreEntities based on inputs. -
Uses of CostCentreEntity in com.skava.accounts.service.impl
Methods in com.skava.accounts.service.impl that return CostCentreEntityModifier and TypeMethodDescriptionUpdateCostCentreServiceImpl.updateCostCentreFromDO
(CostCentreDO costCentreDO, CostCentreEntity costCentreEntity) updateCostCentreFromDO.Methods in com.skava.accounts.service.impl with parameters of type CostCentreEntityModifier and TypeMethodDescriptionUpdateCostCentreServiceImpl.updateCostCentreFromDO
(CostCentreDO costCentreDO, CostCentreEntity costCentreEntity) updateCostCentreFromDO.void
UpdateCostCentreServiceImpl.updatePropertiesForCollection
(CostCentreEntity costCentreEntity, List<BudgetDO> budgets, String locale) Update budgets for collection. -
Uses of CostCentreEntity in com.skava.accounts.util
Methods in com.skava.accounts.util that return types with arguments of type CostCentreEntityModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<CostCentreEntity>
FindAllCostCenterUtil.findAll
(CostCentreDO costCentreDO, String sortStr) Find all.org.springframework.data.domain.Page<CostCentreEntity>
FindAllCostCenterUtil.search
(String filters, org.springframework.data.domain.Pageable pageable, String locale) searchMethod parameters in com.skava.accounts.util with type arguments of type CostCentreEntityModifier and TypeMethodDescriptionFindAllCostCenterUtil.findAllCostCentreDO
(org.springframework.data.domain.Page<CostCentreEntity> costCentreEntities) findAllCostCentreDO - get CostCentreDO from CostCentreEntityFindAllCostCenterUtil.getCostCentreIds
(Iterator<CostCentreEntity> iterator)