Uses of Interface
de.hybris.platform.cockpit.model.collection.ObjectCollection
-
-
Uses of ObjectCollection in de.hybris.platform.cockpit.components.navigationarea
Methods in de.hybris.platform.cockpit.components.navigationarea with parameters of type ObjectCollection Modifier and Type Method Description UICollectionQuery
AbstractNavigationAreaModel. getCollectionQuery(ObjectCollection coll)
-
Uses of ObjectCollection in de.hybris.platform.cockpit.impl
Methods in de.hybris.platform.cockpit.impl with parameters of type ObjectCollection Modifier and Type Method Description protected CockpitObjectAbstractCollectionModel
DefaultCockpitCollectionService. unmapToModel(ObjectCollection collection)
-
Uses of ObjectCollection in de.hybris.platform.cockpit.model.collection
Subinterfaces of ObjectCollection in de.hybris.platform.cockpit.model.collection Modifier and Type Interface Description interface
PageableObjectCollection
Object collection which supports paging of elements -
Uses of ObjectCollection in de.hybris.platform.cockpit.model.collection.impl
Classes in de.hybris.platform.cockpit.model.collection.impl that implement ObjectCollection Modifier and Type Class Description class
ObjectCollectionImpl
-
Uses of ObjectCollection in de.hybris.platform.cockpit.model.query.impl
Methods in de.hybris.platform.cockpit.model.query.impl that return ObjectCollection Modifier and Type Method Description ObjectCollection
UICollectionQuery. getObjectCollection()
Constructors in de.hybris.platform.cockpit.model.query.impl with parameters of type ObjectCollection Constructor Description UICollectionQuery(ObjectCollection objectCollection)
-
Uses of ObjectCollection in de.hybris.platform.cockpit.services
Methods in de.hybris.platform.cockpit.services that return ObjectCollection Modifier and Type Method Description ObjectCollection
ObjectCollectionService. cloneCollection(ObjectCollection collection, UserModel user)
Clones the given collection and assigns just cloned collection to the given user.ObjectCollection
ObjectCollectionService. createCollection(java.lang.String qualifier, UserModel user)
Deprecated.since 6.3, useModelService
to create itemsObjectCollection
ObjectCollectionService. createSpecialCollection(java.lang.String qualifier, UserModel user)
Deprecated.since 6.3, useModelService
to create itemsObjectCollection
ObjectCollectionService. createSpecialCollection(java.lang.String qualifier, UserModel user, HybrisEnumValue collectionType)
Deprecated.since 6.3, useModelService
to create itemsObjectCollection
ObjectCollectionService. createSpecialCollection(java.lang.String qualifier, UserModel user, EnumerationValue collectionType)
Deprecated.since 6.3, useModelService
to create itemsObjectCollection
ObjectCollectionService. refreshCollection(ObjectCollection collection)
Deprecated.since 6.3, use local refreshing if requiredMethods in de.hybris.platform.cockpit.services that return types with arguments of type ObjectCollection Modifier and Type Method Description java.util.List<ObjectCollection>
ObjectCollectionService. getCollections(UserModel user)
Deprecated.since 6.3, useObjectCollectionService.getCollectionsForUser(UserModel)
insteadjava.util.List<ObjectCollection>
ObjectCollectionService. getCollectionsForUser(UserModel user)
Gets all collections for given user including the collections that given user has permission to read or write.java.util.List<ObjectCollection>
ObjectCollectionService. getSpecialCollections(UserModel user)
Deprecated.since 6.3, useObjectCollectionService.getSpecialCollectionsForUser(UserModel)
insteadjava.util.List<ObjectCollection>
ObjectCollectionService. getSpecialCollections(UserModel user, java.lang.String collectionType)
Gets the special collections of the specified type that belongs to the given user.java.util.List<ObjectCollection>
ObjectCollectionService. getSpecialCollectionsForUser(UserModel user)
Gets the special collections for a given user.Methods in de.hybris.platform.cockpit.services with parameters of type ObjectCollection Modifier and Type Method Description void
ObjectCollectionService. addReadUser(PrincipalModel user, ObjectCollection collection)
Allows given user to read given collection.int
ObjectCollectionService. addToCollection(ObjectCollection collection, java.util.Collection<TypedObject> elements)
void
ObjectCollectionService. addWriteUser(PrincipalModel user, ObjectCollection collection)
Allows given user to modify given collection.ObjectCollection
ObjectCollectionService. cloneCollection(ObjectCollection collection, UserModel user)
Clones the given collection and assigns just cloned collection to the given user.int
ObjectCollectionService. getElementCount(ObjectCollection collection)
Gets the number of the elements in the given collection.java.util.List<TypedObject>
ObjectCollectionService. getElements(ObjectCollection collection, int start, int count)
Returns elements of the given object collection.java.util.List<PrincipalModel>
ObjectCollectionService. getReadUsers(ObjectCollection collection)
Deprecated.since 6.3, useObjectCollectionService.getReadUsersForCollection(ObjectCollection)
insteadjava.util.List<PrincipalModel>
ObjectCollectionService. getReadUsersForCollection(ObjectCollection collection)
Returns list of all users who are allowed to read given collection.java.util.List<PrincipalModel>
ObjectCollectionService. getWriteUsers(ObjectCollection collection)
Deprecated.since 6.3, useObjectCollectionService.getWriteUsersForCollection(ObjectCollection)
insteadjava.util.List<PrincipalModel>
ObjectCollectionService. getWriteUsersForCollection(ObjectCollection collection)
Returns list of all users who are allowed to modify given collection.java.lang.Boolean
ObjectCollectionService. hasReadCollectionRight(PrincipalModel principal, ObjectCollection collection)
Returns information whether the user can read collection.java.lang.Boolean
ObjectCollectionService. hasWriteCollectionRight(PrincipalModel principal, ObjectCollection collection)
Returns information whether the user can modify collection.java.lang.Boolean
ObjectCollectionService. isCollectionOwner(PrincipalModel principal, ObjectCollection collection)
Deprecated.since 6.3, use local check when requiredjava.lang.Boolean
ObjectCollectionService. isInCollection(TypedObject object, ObjectCollection collection)
Checks if the given element belongs to the specified collection.void
ObjectCollectionService. publishCollection(ObjectCollection collection)
Sets the collection's owner to null, so it can be accessed by any user.ObjectCollection
ObjectCollectionService. refreshCollection(ObjectCollection collection)
Deprecated.since 6.3, use local refreshing if requiredvoid
ObjectCollectionService. removeCollection(ObjectCollection collection)
Deprecated.since 6.3, useModelService
to remove itemsint
ObjectCollectionService. removeFromCollection(ObjectCollection collection, java.util.Collection<TypedObject> elements)
int
ObjectCollectionService. removeNullItemReferences(ObjectCollection collection)
Removes references to non-existing itemsvoid
ObjectCollectionService. removeReadUser(PrincipalModel user, ObjectCollection collection)
Disallow given user to read given collection.void
ObjectCollectionService. removeWriteUser(PrincipalModel user, ObjectCollection collection)
Disallow given user to modify given collection.void
ObjectCollectionService. renameCollection(ObjectCollection collection, java.lang.String label)
Renames the collection with the specified label. -
Uses of ObjectCollection in de.hybris.platform.cockpit.services.impl
Methods in de.hybris.platform.cockpit.services.impl that return ObjectCollection Modifier and Type Method Description ObjectCollection
ObjectCollectionServiceImpl. cloneCollection(ObjectCollection collection, UserModel user)
Clones the given collection and assigns just cloned collection to the given user.ObjectCollection
ObjectCollectionServiceImpl. createCollection(java.lang.String qualifier, UserModel user)
Creates the collection for the given parameters.ObjectCollection
ObjectCollectionServiceImpl. createSpecialCollection(java.lang.String qualifier, UserModel user)
Creates the special collection with the collection type set to null.ObjectCollection
ObjectCollectionServiceImpl. createSpecialCollection(java.lang.String qualifier, UserModel user, HybrisEnumValue collectionType)
Creates the special collection for the given parameters.ObjectCollection
ObjectCollectionServiceImpl. createSpecialCollection(java.lang.String qualifier, UserModel user, EnumerationValue collectionType)
ObjectCollection
ObjectCollectionServiceImpl. mapCollection(CockpitObjectAbstractCollection source)
Deprecated.since 6.3, useObjectCollectionServiceImpl.mapCollection(CockpitObjectAbstractCollectionModel)
insteadObjectCollection
ObjectCollectionServiceImpl. refreshCollection(ObjectCollection collection)
Removes all not existing items from the collection.Methods in de.hybris.platform.cockpit.services.impl that return types with arguments of type ObjectCollection Modifier and Type Method Description java.util.List<ObjectCollection>
ObjectCollectionServiceImpl. getCollections(UserModel user)
java.util.List<ObjectCollection>
ObjectCollectionServiceImpl. getCollectionsForUser(UserModel user)
Gets all collections for given user including the collections that given user has permission to read or write.java.util.List<ObjectCollection>
ObjectCollectionServiceImpl. getSpecialCollections(UserModel user)
java.util.List<ObjectCollection>
ObjectCollectionServiceImpl. getSpecialCollections(UserModel user, java.lang.String collectionType)
Gets the special collections of the specified type that belongs to the given user.java.util.List<ObjectCollection>
ObjectCollectionServiceImpl. getSpecialCollectionsForUser(UserModel user)
Gets the special collections for a given user.Methods in de.hybris.platform.cockpit.services.impl with parameters of type ObjectCollection Modifier and Type Method Description void
ObjectCollectionServiceImpl. addReadUser(PrincipalModel user, ObjectCollection collection)
Allows given user to read given collection.int
ObjectCollectionServiceImpl. addToCollection(ObjectCollection collection, java.util.Collection<TypedObject> elements)
void
ObjectCollectionServiceImpl. addWriteUser(PrincipalModel user, ObjectCollection collection)
Allows given user to modify given collection.ObjectCollection
ObjectCollectionServiceImpl. cloneCollection(ObjectCollection collection, UserModel user)
Clones the given collection and assigns just cloned collection to the given user.int
ObjectCollectionServiceImpl. getElementCount(ObjectCollection collection)
Gets the number of the elements in the given collection.java.util.List<TypedObject>
ObjectCollectionServiceImpl. getElements(ObjectCollection collection, int start, int count)
Returns elements of the given object collection.java.util.List<PrincipalModel>
ObjectCollectionServiceImpl. getReadUsers(ObjectCollection collection)
java.util.List<PrincipalModel>
ObjectCollectionServiceImpl. getReadUsersForCollection(ObjectCollection collection)
Returns list of all users who are allowed to read given collection.java.util.List<PrincipalModel>
ObjectCollectionServiceImpl. getWriteUsers(ObjectCollection collection)
java.util.List<PrincipalModel>
ObjectCollectionServiceImpl. getWriteUsersForCollection(ObjectCollection collection)
Returns list of all users who are allowed to modify given collection.java.lang.Boolean
ObjectCollectionServiceImpl. hasReadCollectionRight(PrincipalModel principal, ObjectCollection collection)
Returns information whether the user can read collection.java.lang.Boolean
ObjectCollectionServiceImpl. hasWriteCollectionRight(PrincipalModel principal, ObjectCollection collection)
Returns information whether the user can modify collection.java.lang.Boolean
ObjectCollectionServiceImpl. isCollectionOwner(PrincipalModel principal, ObjectCollection collection)
Checks if given collection belongs to the given user.java.lang.Boolean
ObjectCollectionServiceImpl. isInCollection(TypedObject object, ObjectCollection collection)
Checks if the given element belongs to the specified collection.void
ObjectCollectionServiceImpl. publishCollection(ObjectCollection collection)
Sets the collection's owner to null, so it can be accessed by any user.ObjectCollection
ObjectCollectionServiceImpl. refreshCollection(ObjectCollection collection)
Removes all not existing items from the collection.void
ObjectCollectionServiceImpl. removeCollection(ObjectCollection collection)
Removes the collection from the system.int
ObjectCollectionServiceImpl. removeFromCollection(ObjectCollection collection, java.util.Collection<TypedObject> elements)
int
ObjectCollectionServiceImpl. removeNullItemReferences(ObjectCollection collection)
Removes references to non-existing itemsvoid
ObjectCollectionServiceImpl. removeReadUser(PrincipalModel user, ObjectCollection collection)
Disallow given user to read given collection.void
ObjectCollectionServiceImpl. removeWriteUser(PrincipalModel user, ObjectCollection collection)
Disallow given user to modify given collection.void
ObjectCollectionServiceImpl. renameCollection(ObjectCollection collection, java.lang.String label)
Renames the collection with the specified label.protected CockpitObjectAbstractCollection
ObjectCollectionServiceImpl. unmapCollection(ObjectCollection collection)
Deprecated.since 6.3, useObjectCollectionServiceImpl.unmapToModel(ObjectCollection)
insteadprotected CockpitObjectAbstractCollectionModel
ObjectCollectionServiceImpl. unmapToModel(ObjectCollection collection)
-
Uses of ObjectCollection in de.hybris.platform.cockpit.services.search.impl
Method parameters in de.hybris.platform.cockpit.services.search.impl with type arguments of type ObjectCollection Modifier and Type Method Description protected java.lang.String
GenericQuerySearchProvider. getCollectionsPKList(java.util.List<ObjectCollection> collections)
-
Uses of ObjectCollection in de.hybris.platform.cockpit.session
Methods in de.hybris.platform.cockpit.session with parameters of type ObjectCollection Modifier and Type Method Description void
NavigationAreaListener. collectionAdded(ObjectCollection collection)
void
NavigationAreaListener. collectionChanged(ObjectCollection collection)
-
Uses of ObjectCollection in de.hybris.platform.cockpit.session.impl
Methods in de.hybris.platform.cockpit.session.impl that return ObjectCollection Modifier and Type Method Description ObjectCollection
CollectionBrowserModel. getCollection()
Returns the items held by this browser.Methods in de.hybris.platform.cockpit.session.impl with parameters of type ObjectCollection Modifier and Type Method Description void
DefaultNavigationAreaListener. collectionAdded(ObjectCollection collection)
void
DefaultNavigationAreaListener. collectionChanged(ObjectCollection collection)
protected void
BaseUICockpitNavigationArea. fireCollectionAdded(ObjectCollection collection)
protected void
BaseUICockpitNavigationArea. fireCollectionChanged(ObjectCollection collection)
void
CollectionBrowserModel. setCollection(ObjectCollection collection)
Sets the collection held by thisCollectionBrowserModel
tocollection
. -
Uses of ObjectCollection in de.hybris.platform.productcockpit.session.impl
Methods in de.hybris.platform.productcockpit.session.impl that return ObjectCollection Modifier and Type Method Description ObjectCollection
NavigationArea. pasteProductToCollection(ObjectCollection collection, java.util.List<java.lang.String> codes, UserModel user)
Method that search products with appropiate code, and add them to given collectionMethods in de.hybris.platform.productcockpit.session.impl with parameters of type ObjectCollection Modifier and Type Method Description UICollectionQuery
NavigationArea. getCollectionQuery(ObjectCollection coll)
ObjectCollection
NavigationArea. pasteProductToCollection(ObjectCollection collection, java.util.List<java.lang.String> codes, UserModel user)
Method that search products with appropiate code, and add them to given collection
-