Uses of Class
com.skava.auth.model.entities.CollectionProperty
Packages that use CollectionProperty
Package
Description
Models to represent the entity classes.
Data transfer classes for collection property to transfer data from service to CollectionPropertyController.
Data transfer classes for entities to hold the entity related informations.
Repository classes to represent the data access layer of the entities.
Support classes for hold the reusable functionalities.
-
Uses of CollectionProperty in com.skava.auth.model.entities
Fields in com.skava.auth.model.entities with type parameters of type CollectionPropertyModifier and TypeFieldDescriptionfinal com.querydsl.core.types.dsl.SetPath<CollectionProperty,
QCollectionProperty> QCollection.properties
Methods in com.skava.auth.model.entities with parameters of type CollectionPropertyModifier and TypeMethodDescriptionboolean
CollectionProperty.isAttributeNotEqual
(CollectionProperty other) This method is to check the equality of two collection attribute objects, return TRUE if equals else FALSE.Constructor parameters in com.skava.auth.model.entities with type arguments of type CollectionPropertyModifierConstructorDescriptionQCollectionProperty
(com.querydsl.core.types.Path<? extends CollectionProperty> path) QCollectionProperty
(Class<? extends CollectionProperty> type, com.querydsl.core.types.PathMetadata metadata, com.querydsl.core.types.dsl.PathInits inits) -
Uses of CollectionProperty in com.skava.auth.model.response.collectionproperty
Constructors in com.skava.auth.model.response.collectionproperty with parameters of type CollectionPropertyModifierConstructorDescriptionCollectionPropertyResponse
(String responseCode, CollectionProperty collectionProperty) Instantiates a new collection property response.Constructor parameters in com.skava.auth.model.response.collectionproperty with type arguments of type CollectionPropertyModifierConstructorDescriptionCollectionPropertiesResponse
(List<CollectionProperty> properties) Instantiates a new collection properties response. -
Uses of CollectionProperty in com.skava.auth.model.rest.entities
Constructors in com.skava.auth.model.rest.entities with parameters of type CollectionPropertyModifierConstructorDescriptionCollectionPropertyVO
(CollectionProperty properties) ConstructCollectionPropertyVO
object by parsingCollectionProperty
object. -
Uses of CollectionProperty in com.skava.auth.repository
Methods in com.skava.auth.repository that return types with arguments of type CollectionPropertyModifier and TypeMethodDescriptionCollectionPropertyRepository.findByAttributeNameAndCollectionId
(String name, Long collectionId) Service definition to find attributes by name and collection id. -
Uses of CollectionProperty in com.skava.auth.util
Methods in com.skava.auth.util that return CollectionPropertyModifier and TypeMethodDescriptionstatic CollectionProperty
CollectionPropertyUtil.getcollectionProperty
(long collectionId, String propertyName, CollectionPropertyRepository collectionPropertyRepository) Methods in com.skava.auth.util that return types with arguments of type CollectionPropertyModifier and TypeMethodDescriptionstatic Set<CollectionProperty>
AuthUtil.getCollectionProperties
(Collection collection, List<CollectionPropertyVO> requestProperties, List<CollectionAttribute> attributes, org.springframework.context.MessageSource messageSource) static Set<CollectionProperty>
AuthUtil.getUpdatedCollectionProperties
(Collection collection, List<CollectionPropertyVO> requestProperties, List<CollectionAttribute> attributes, org.springframework.context.MessageSource messageSource) static Optional<CollectionProperty>
OAuthUtil.loadCollectionProperty
(Long collectionId, String attributeName, CollectionPropertyRepository collectionPropertyRepository) This method load the collection property by using collection identifier and collection attribute name.