Uses of Class
com.skava.marketplace.model.entity.PrivateAppAssociation
Packages that use PrivateAppAssociation
Package
Description
Domain model classes of the Appmarketplace Service available here.
Entity model classes of the Appmarketplace Service available here.
Exchange response model classes of the Appmarketplace Service available here.
DB operations(CRUD) are triggered from the process class.
DB operations are performed in the repository class.
-
Uses of PrivateAppAssociation in com.skava.marketplace.model.domain
Methods in com.skava.marketplace.model.domain that return types with arguments of type PrivateAppAssociationMethods in com.skava.marketplace.model.domain with parameters of type PrivateAppAssociationModifier and TypeMethodDescriptionPatchUpdatePrivateAppAssociationDO.fromEntity
(PrivateAppAssociation privateAppAssociation) Method parameters in com.skava.marketplace.model.domain with type arguments of type PrivateAppAssociationModifier and TypeMethodDescriptionPrivateAppAssociationDO.fromEntity
(List<PrivateAppAssociation> privateAppAssosciations) -
Uses of PrivateAppAssociation in com.skava.marketplace.model.entity
Constructor parameters in com.skava.marketplace.model.entity with type arguments of type PrivateAppAssociationModifierConstructorDescriptionQPrivateAppAssociation
(com.querydsl.core.types.Path<? extends PrivateAppAssociation> path) -
Uses of PrivateAppAssociation in com.skava.marketplace.model.exchange.response
Methods in com.skava.marketplace.model.exchange.response with parameters of type PrivateAppAssociationModifier and TypeMethodDescriptionPrivateAppAssociationResponse.toDomainObject
(PrivateAppAssociation privateAppAssosciationEntity) -
Uses of PrivateAppAssociation in com.skava.marketplace.process
Methods in com.skava.marketplace.process that return types with arguments of type PrivateAppAssociationModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<PrivateAppAssociation>
FindAllPrivateAppAssociationByAppIdProcess.getPrivateAppAssociation
(String filters, int page, int size, com.skava.core.qdsl.sort.EcomSorts ecomSorts) -
Uses of PrivateAppAssociation in com.skava.marketplace.repository
Methods in com.skava.marketplace.repository that return types with arguments of type PrivateAppAssociationModifier and TypeMethodDescriptionPrivateAppAssociationRepository.findByAppId
(String appId) Finds and returns a list of PrivateAppAssociation entities that match the given app ID.PrivateAppAssociationRepository.findByAppIdAndAppVersionAndAssociatedBusinessId
(String appId, String appVersion, Long associatedBusinessId) This method is used to find a private app association based on the appId, appVersion, and associatedBusinessId.PrivateAppAssociationRepository.findByAppIdAndAppVersionAndAssociatedBusinessIdAndAssociatedStatus
(String appId, String appVersion, Long associatedBusinessId, String associatedStatus) This method is used to find a private app association based on the appId, appVersion, associatedBusinessId, and associatedStatus.PrivateAppAssociationRepository.findByAppIdAndAppVersionAndBusinessId
(String appId, String appVersion, Long businessId) This method is used to find private app associations based on the appId, appVersion, and businessId.