Uses of Interface
org.sakaiproject.entitybroker.entityprovider.capabilities.Browseable
-
Packages that use Browseable Package Description org.sakaiproject.entitybroker.entityprovider.capabilities -
-
Uses of Browseable in org.sakaiproject.entitybroker.entityprovider.capabilities
Subinterfaces of Browseable in org.sakaiproject.entitybroker.entityprovider.capabilities Modifier and Type Interface Description interfaceBrowseableCollectionThis indicates that this entity will participate in browse functionality for entities, For example, it will provide lists of entities which are visible to users in locations which can be looked through and selected
Entities which do not implement this will not appear in lists of entities which are being browsed
This is the convention interface and simply uses the results of calls toCollectionResolvableto provide lists of entities for browsing, the implementor should be sure that ordering and limiting are supported for the provided search object in their implementation ofCollectionResolvable.getEntities(org.sakaiproject.entitybroker.EntityReference, org.sakaiproject.entitybroker.entityprovider.search.Search)
This is one of the capability extensions for theEntityProviderinterface
SeeBrowseablefor the i18n keys
This extendsCollectionResolvable, use theBrowseSearchableinterface if you require more controlinterfaceBrowseNestableThis indicates that this entity will participate in browse functionality for entities and it is nested within another entity: Example:
A blog (parent) contains blog entries (children).interfaceBrowseSearchableThis indicates that this entity will participate in browse functionality for entities, For example, it will provide lists of entities which are visible to users in locations which can be looked through and selected
This provides fine grained control over which entities will appear in a browse list, normallyCollectionResolvableshould show all entities, however, for the browse list we will explicitly filter by users and/or locations and may not show all entities, entities which do not implement this orBrowseableCollectionwill not appear in lists of entities which are being browsed
This is one of the capability extensions for theEntityProviderinterface
This is the configuration interface forBrowseableCollection(the convention interface)
-