Uses of Class
com.skava.accounts.model.entity.AccountsEntity
Packages that use AccountsEntity
Package
Description
Accounts Domain Model Declarations.
Accounts Entity Model Declarations.
Accounts Repository Declarations.
Accounts Utility Implementations.
-
Uses of AccountsEntity in com.skava.accounts.model.domain
Methods in com.skava.accounts.model.domain that return AccountsEntityModifier and TypeMethodDescriptionAccountsDO.toEntity()
This method is used to convert AccountsDO object to AccountsEntity object.Methods in com.skava.accounts.model.domain with parameters of type AccountsEntityModifier and TypeMethodDescriptionAccountsDO.fromEntity
(AccountsEntity account) fromEntityAccountsDO.fromEntity
(AccountsEntity account, String service) This method is used to set collcetionDO's Id from entity.AccountBuyerDO.toEntity
(AccountsEntity account, long teamId) To entity.AccountPropertiesDO.toEntity
(AccountPropertiesEntity existingProperty, AccountsEntity account) toEntity - This method is used to build AccountPropertiesEntity object from old oneAccountPropertiesDO.toEntity
(AccountsEntity account) toEntity - This method is used to build new AccountPropertiesEntity objectAccountSellerDO.toEntity
(AccountsEntity account) To entity.TeamDO.toEntity
(AccountsEntity account) toEntity - Used to convert entity to domain object. -
Uses of AccountsEntity in com.skava.accounts.model.entity
Fields in com.skava.accounts.model.entity with type parameters of type AccountsEntityModifier and TypeFieldDescriptionfinal com.querydsl.core.types.dsl.ListPath<AccountsEntity,
QAccountsEntity> QCollectionsEntity.accounts
Constructor parameters in com.skava.accounts.model.entity with type arguments of type AccountsEntityModifierConstructorDescriptionQAccountsEntity
(com.querydsl.core.types.Path<? extends AccountsEntity> path) QAccountsEntity
(Class<? extends AccountsEntity> type, com.querydsl.core.types.PathMetadata metadata, com.querydsl.core.types.dsl.PathInits inits) -
Uses of AccountsEntity in com.skava.accounts.repository
Methods in com.skava.accounts.repository that return types with arguments of type AccountsEntityModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<AccountsEntity>
AccountsRepository.findAll
(org.springframework.data.jpa.domain.Specification<AccountsEntity> specification, org.springframework.data.domain.Pageable pageRequest) Find all AccountsEntity by given inputsorg.springframework.data.domain.Page<AccountsEntity>
AccountsRepository.findAllByCollectionId
(org.springframework.data.jpa.domain.Specification<AccountsEntity> specification, org.springframework.data.domain.Pageable pageRequest, long collectionId) Find all.AccountsRepository.findByIdAndCollectionId
(long id, Long collectionId) Find by id and collection id.AccountsRepository.findByTypeId
(long typeId) This function is used to find all the accounts associated with the given accountTypeId.AccountsRepository.findStatusByIdAndCollectionId
(long id, long collectionId) Find status by id and collection id.Method parameters in com.skava.accounts.repository with type arguments of type AccountsEntityModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<AccountBuyerEntity>
AccountBuyerRepository.findAll
(org.springframework.data.jpa.domain.Specification<AccountsEntity> specification, org.springframework.data.domain.Pageable pageRequest) Method used to search all accountbuyers from db .org.springframework.data.domain.Page<AccountSellerEntity>
AccountSellerRepository.findAll
(org.springframework.data.jpa.domain.Specification<AccountsEntity> specification, org.springframework.data.domain.Pageable pageRequest) Find all.org.springframework.data.domain.Page<AccountsEntity>
AccountsRepository.findAll
(org.springframework.data.jpa.domain.Specification<AccountsEntity> specification, org.springframework.data.domain.Pageable pageRequest) Find all AccountsEntity by given inputsorg.springframework.data.domain.Page<AccountsEntity>
AccountsRepository.findAllByCollectionId
(org.springframework.data.jpa.domain.Specification<AccountsEntity> specification, org.springframework.data.domain.Pageable pageRequest, long collectionId) Find all. -
Uses of AccountsEntity in com.skava.accounts.util
Methods in com.skava.accounts.util that return AccountsEntityModifier and TypeMethodDescriptionCreateAccountServiceUtil.createAccountProperties
(AccountsEntity account) Methods in com.skava.accounts.util with parameters of type AccountsEntityModifier and TypeMethodDescriptionCreateAccountServiceUtil.createAccountProperties
(AccountsEntity account) void
CreateAccountServiceUtil.createCostCentreAndTeam
(AccountsDO accountDO, AccountsEntity account, List<CostCentreDO> costCentreDO, List<TeamDO> teamDO) CreateAccountServiceUtil.createDefaultCostcentreDO
(AccountsEntity account) This method is used to create default costcentreDO.CreateAccountServiceUtil.createDefaultTeamDO
(AccountsEntity account) `This method is used to create default teamDO.