Uses of Class
de.hybris.platform.cockpit.model.CockpitObjectAbstractCollectionModel
-
Packages that use CockpitObjectAbstractCollectionModel Package Description de.hybris.platform.cockpit de.hybris.platform.cockpit.daos de.hybris.platform.cockpit.daos.impl de.hybris.platform.cockpit.impl de.hybris.platform.cockpit.model Contains generated models for each type of de.hybris.platform.cockpit.jalo package.de.hybris.platform.cockpit.model.collection.impl de.hybris.platform.cockpit.services.impl de.hybris.platform.core.model.security Contains generated models for each type of de.hybris.platform.jalo.security package.de.hybris.platform.core.model.user Contains generated models for each type of de.hybris.platform.jalo.user package. -
-
Uses of CockpitObjectAbstractCollectionModel in de.hybris.platform.cockpit
Methods in de.hybris.platform.cockpit that return CockpitObjectAbstractCollectionModel Modifier and Type Method Description CockpitObjectAbstractCollectionModel
CockpitCollectionService. cloneCollection(CockpitObjectAbstractCollectionModel collection, UserModel user)
Clones the given collection and assigns just cloned collection to the given user.Methods in de.hybris.platform.cockpit that return types with arguments of type CockpitObjectAbstractCollectionModel Modifier and Type Method Description java.util.List<CockpitObjectAbstractCollectionModel>
CockpitCollectionService. getCollectionsForUser(UserModel user)
Gets all collections for given user including the collections that given user has permission to read or write.Methods in de.hybris.platform.cockpit with parameters of type CockpitObjectAbstractCollectionModel Modifier and Type Method Description void
CockpitCollectionService. addReadUser(PrincipalModel user, CockpitObjectAbstractCollectionModel collection)
Allows given user to read given collection.int
CockpitCollectionService. addToCollection(CockpitObjectAbstractCollectionModel collection, java.util.List<ItemModel> elements)
void
CockpitCollectionService. addWriteUser(PrincipalModel user, CockpitObjectAbstractCollectionModel collection)
Allows given user to modify given collection.CockpitObjectAbstractCollectionModel
CockpitCollectionService. cloneCollection(CockpitObjectAbstractCollectionModel collection, UserModel user)
Clones the given collection and assigns just cloned collection to the given user.int
CockpitCollectionService. getElementCount(CockpitObjectAbstractCollectionModel collection)
Gets the element count for the given collection.java.util.List<ItemModel>
CockpitCollectionService. getElements(CockpitObjectAbstractCollectionModel collection, int start, int count)
Returns elements of the given object collection.boolean
CockpitCollectionService. hasReadCollectionRight(PrincipalModel principal, CockpitObjectAbstractCollectionModel collection)
Returns information whether the user can read collection.boolean
CockpitCollectionService. hasWriteCollectionRight(PrincipalModel principal, CockpitObjectAbstractCollectionModel collection)
Returns information whether the user can modify collection.boolean
CockpitCollectionService. isInCollection(ItemModel object, CockpitObjectAbstractCollectionModel collection)
Checks if the given element belongs to the specified collection.int
CockpitCollectionService. removeFromCollection(CockpitObjectAbstractCollectionModel collection, java.util.List<ItemModel> elements)
int
CockpitCollectionService. removeNullItemReferences(CockpitObjectAbstractCollectionModel collection)
Removes references to non-existing itemsvoid
CockpitCollectionService. removeReadUser(PrincipalModel user, CockpitObjectAbstractCollectionModel collection)
Disallow given user to read given collection.void
CockpitCollectionService. removeWriteUser(PrincipalModel user, CockpitObjectAbstractCollectionModel collection)
Disallow given user to modify given collection. -
Uses of CockpitObjectAbstractCollectionModel in de.hybris.platform.cockpit.daos
Methods in de.hybris.platform.cockpit.daos that return types with arguments of type CockpitObjectAbstractCollectionModel Modifier and Type Method Description java.util.List<CockpitObjectAbstractCollectionModel>
CockpitObjectAbstractCollectionDao. findGlobalCollections()
Gets the global collections that is collections that have no user set.java.util.List<CockpitObjectAbstractCollectionModel>
CockpitObjectAbstractCollectionDao. getGlobalCollections()
Deprecated.since 6.3, useCockpitObjectAbstractCollectionDao.findGlobalCollections()
insteadMethods in de.hybris.platform.cockpit.daos with parameters of type CockpitObjectAbstractCollectionModel Modifier and Type Method Description boolean
CockpitObjectAbstractCollectionDao. collectionContains(CockpitObjectAbstractCollectionModel collection, ItemModel item)
Returns true if the collection contains at least one element with the given item, false otherwise.java.util.List<ObjectCollectionItemReferenceModel>
CockpitObjectAbstractCollectionDao. findElements(CockpitObjectAbstractCollectionModel collection, int start, int count)
Finds elements of the given object collection.java.util.List<ObjectCollectionItemReferenceModel>
CockpitObjectAbstractCollectionDao. findElementsContainingItem(CockpitObjectAbstractCollectionModel collection, ItemModel item)
Returns all elements of the collection that contain given item.int
CockpitObjectAbstractCollectionDao. getElementCount(CockpitObjectAbstractCollectionModel collection)
Return total count of elements in the collection.java.util.List<ObjectCollectionItemReferenceModel>
CockpitObjectAbstractCollectionDao. getElementsContainingItem(CockpitObjectAbstractCollectionModel collection, ItemModel item)
Deprecated. -
Uses of CockpitObjectAbstractCollectionModel in de.hybris.platform.cockpit.daos.impl
Methods in de.hybris.platform.cockpit.daos.impl that return types with arguments of type CockpitObjectAbstractCollectionModel Modifier and Type Method Description java.util.List<CockpitObjectAbstractCollectionModel>
DefaultCockpitObjectAbstractCollectionDao. findGlobalCollections()
java.util.List<CockpitObjectAbstractCollectionModel>
DefaultCockpitObjectAbstractCollectionDao. getGlobalCollections()
Deprecated.since 6.3 -
Uses of CockpitObjectAbstractCollectionModel in de.hybris.platform.cockpit.impl
Methods in de.hybris.platform.cockpit.impl that return CockpitObjectAbstractCollectionModel Modifier and Type Method Description CockpitObjectAbstractCollectionModel
DefaultCockpitCollectionService. cloneCollection(CockpitObjectAbstractCollectionModel collection, UserModel user)
Clones the given collection and assigns just cloned collection to the given user.protected CockpitObjectAbstractCollectionModel
DefaultCockpitCollectionService. unmapToModel(ObjectCollection collection)
Methods in de.hybris.platform.cockpit.impl that return types with arguments of type CockpitObjectAbstractCollectionModel Modifier and Type Method Description java.util.List<CockpitObjectAbstractCollectionModel>
DefaultCockpitCollectionService. getCollectionsForUser(UserModel user)
Gets all collections for given user including the collections that given user has permission to read or write.Methods in de.hybris.platform.cockpit.impl with parameters of type CockpitObjectAbstractCollectionModel Modifier and Type Method Description void
DefaultCockpitCollectionService. addReadUser(PrincipalModel user, CockpitObjectAbstractCollectionModel collection)
Allows given user to read given collection.int
DefaultCockpitCollectionService. addToCollection(CockpitObjectAbstractCollectionModel collModel, java.util.List<ItemModel> elements)
void
DefaultCockpitCollectionService. addWriteUser(PrincipalModel user, CockpitObjectAbstractCollectionModel collection)
Allows given user to modify given collection.CockpitObjectAbstractCollectionModel
DefaultCockpitCollectionService. cloneCollection(CockpitObjectAbstractCollectionModel collection, UserModel user)
Clones the given collection and assigns just cloned collection to the given user.int
DefaultCockpitCollectionService. getElementCount(CockpitObjectAbstractCollectionModel collection)
Gets the element count for the given collection.java.util.List<ItemModel>
DefaultCockpitCollectionService. getElements(CockpitObjectAbstractCollectionModel collModel, int start, int count)
Returns elements of the given object collection.boolean
DefaultCockpitCollectionService. hasReadCollectionRight(PrincipalModel principal, CockpitObjectAbstractCollectionModel collection)
Returns information whether the user can read collection.boolean
DefaultCockpitCollectionService. hasWriteCollectionRight(PrincipalModel principal, CockpitObjectAbstractCollectionModel collection)
Returns information whether the user can modify collection.boolean
DefaultCockpitCollectionService. isInCollection(ItemModel object, CockpitObjectAbstractCollectionModel collection)
Checks if the given element belongs to the specified collection.int
DefaultCockpitCollectionService. removeFromCollection(CockpitObjectAbstractCollectionModel collectionModel, java.util.List<ItemModel> elements)
int
DefaultCockpitCollectionService. removeNullItemReferences(CockpitObjectAbstractCollectionModel collModel)
Removes references to non-existing itemsvoid
DefaultCockpitCollectionService. removeReadUser(PrincipalModel user, CockpitObjectAbstractCollectionModel collection)
Disallow given user to read given collection.void
DefaultCockpitCollectionService. removeWriteUser(PrincipalModel user, CockpitObjectAbstractCollectionModel collection)
Disallow given user to modify given collection. -
Uses of CockpitObjectAbstractCollectionModel in de.hybris.platform.cockpit.model
Subclasses of CockpitObjectAbstractCollectionModel in de.hybris.platform.cockpit.model Modifier and Type Class Description class
CockpitObjectCollectionModel
Generated model class for type CockpitObjectCollection first defined at extension cockpit.class
CockpitObjectSpecialCollectionModel
Generated model class for type CockpitObjectSpecialCollection first defined at extension cockpit.Methods in de.hybris.platform.cockpit.model that return CockpitObjectAbstractCollectionModel Modifier and Type Method Description CockpitObjectAbstractCollectionModel
ObjectCollectionElementModel. getCollection()
Generated method - Getter of theObjectCollectionElement.collection
attribute defined at extensioncockpit
.Methods in de.hybris.platform.cockpit.model with parameters of type CockpitObjectAbstractCollectionModel Modifier and Type Method Description void
ObjectCollectionElementModel. setCollection(CockpitObjectAbstractCollectionModel value)
Generated method - Setter ofObjectCollectionElement.collection
attribute defined at extensioncockpit
.Constructors in de.hybris.platform.cockpit.model with parameters of type CockpitObjectAbstractCollectionModel Constructor Description ObjectCollectionElementModel(CockpitObjectAbstractCollectionModel _collection, java.lang.String _objectTypeCode)
Deprecated, for removal: This API element is subject to removal in a future version.since 4.1.1 Please use the default constructor without parametersObjectCollectionElementModel(CockpitObjectAbstractCollectionModel _collection, java.lang.String _objectTypeCode, ItemModel _owner)
Deprecated, for removal: This API element is subject to removal in a future version.since 4.1.1 Please use the default constructor without parametersObjectCollectionItemReferenceModel(CockpitObjectAbstractCollectionModel _collection, ItemModel _item, java.lang.String _objectTypeCode)
Deprecated, for removal: This API element is subject to removal in a future version.since 4.1.1 Please use the default constructor without parametersObjectCollectionItemReferenceModel(CockpitObjectAbstractCollectionModel _collection, ItemModel _item, java.lang.String _objectTypeCode, ItemModel _owner)
Deprecated, for removal: This API element is subject to removal in a future version.since 4.1.1 Please use the default constructor without parameters -
Uses of CockpitObjectAbstractCollectionModel in de.hybris.platform.cockpit.model.collection.impl
Constructors in de.hybris.platform.cockpit.model.collection.impl with parameters of type CockpitObjectAbstractCollectionModel Constructor Description ObjectCollectionImpl(CockpitObjectAbstractCollectionModel collectionModel)
-
Uses of CockpitObjectAbstractCollectionModel in de.hybris.platform.cockpit.services.impl
Methods in de.hybris.platform.cockpit.services.impl that return CockpitObjectAbstractCollectionModel Modifier and Type Method Description protected CockpitObjectAbstractCollectionModel
ObjectCollectionServiceImpl. unmapToModel(ObjectCollection collection)
-
Uses of CockpitObjectAbstractCollectionModel in de.hybris.platform.core.model.security
Methods in de.hybris.platform.core.model.security that return types with arguments of type CockpitObjectAbstractCollectionModel Modifier and Type Method Description java.util.Collection<CockpitObjectAbstractCollectionModel>
PrincipalModel. getReadCollections()
Generated method - Getter of thePrincipal.readCollections
attribute defined at extensioncockpit
.java.util.Collection<CockpitObjectAbstractCollectionModel>
PrincipalModel. getWriteCollections()
Generated method - Getter of thePrincipal.writeCollections
attribute defined at extensioncockpit
.Method parameters in de.hybris.platform.core.model.security with type arguments of type CockpitObjectAbstractCollectionModel Modifier and Type Method Description void
PrincipalModel. setReadCollections(java.util.Collection<CockpitObjectAbstractCollectionModel> value)
Generated method - Setter ofPrincipal.readCollections
attribute defined at extensioncockpit
.void
PrincipalModel. setWriteCollections(java.util.Collection<CockpitObjectAbstractCollectionModel> value)
Generated method - Setter ofPrincipal.writeCollections
attribute defined at extensioncockpit
. -
Uses of CockpitObjectAbstractCollectionModel in de.hybris.platform.core.model.user
Methods in de.hybris.platform.core.model.user that return types with arguments of type CockpitObjectAbstractCollectionModel Modifier and Type Method Description java.util.Collection<CockpitObjectAbstractCollectionModel>
UserModel. getCollections()
Generated method - Getter of theUser.collections
attribute defined at extensioncockpit
.Method parameters in de.hybris.platform.core.model.user with type arguments of type CockpitObjectAbstractCollectionModel Modifier and Type Method Description void
UserModel. setCollections(java.util.Collection<CockpitObjectAbstractCollectionModel> value)
Generated method - Setter ofUser.collections
attribute defined at extensioncockpit
.
-