Overview  Package  Class   Use  Tree  Deprecated  Index  Help 
PREV   NEXT FRAMES    NO FRAMES    All Classes

Uses of Class
org.alfresco.service.cmr.repository.StoreRef
Packages that use org.alfresco.service.cmr.repository.StoreRef
org.alfresco.repo.i18n
org.alfresco.repo.model.filefolder
org.alfresco.repo.node
org.alfresco.repo.tenant
org.alfresco.service.cmr.repository
org.alfresco.service.cmr.search
org.alfresco.service.cmr.security
org.alfresco.service.cmr.tagging
org.alfresco.service.cmr.version
Uses of StoreRef in org.alfresco.repo.i18n
Methods in org.alfresco.repo.i18n with parameters of type StoreRef
MessageService.getRepoResourceBundle(StoreRef storeRef, String path, Locale locale)
          Get message resource bundle from the repository note: also used by Web Client (ResourceBundleWrapper)
Uses of StoreRef in org.alfresco.repo.model.filefolder
Methods in org.alfresco.repo.model.filefolder with parameters of type StoreRef
void
HiddenAspect.checkHidden(StoreRef storeRef)
          Searches for nodes in the given store that should be hidden (i.e.
Uses of StoreRef in org.alfresco.repo.node
Methods in org.alfresco.repo.node with parameters of type StoreRef
abstract void
NodeServicePolicies.BeforeCreateStorePolicy.beforeCreateStore(QName nodeTypeQName, StoreRef storeRef)
          Called before a new node store is created.
Uses of StoreRef in org.alfresco.repo.tenant
Methods in org.alfresco.repo.tenant that return StoreRef
abstract StoreRef
TenantService.getBaseName(StoreRef storeRef)
abstract StoreRef
TenantService.getName(StoreRef storeRef)
abstract StoreRef
TenantService.getName(String username, StoreRef storeRef)
Methods in org.alfresco.repo.tenant with parameters of type StoreRef
abstract StoreRef
TenantService.getBaseName(StoreRef storeRef)
abstract StoreRef
TenantService.getName(StoreRef storeRef)
abstract StoreRef
TenantService.getName(String username, StoreRef storeRef)
Uses of StoreRef in org.alfresco.service.cmr.repository
Fields in org.alfresco.service.cmr.repository declared as StoreRef
static StoreRef
StoreRef.STORE_REF_ARCHIVE_SPACESSTORE
           
static StoreRef
StoreRef.STORE_REF_WORKSPACE_SPACESSTORE
           
Methods in org.alfresco.service.cmr.repository that return StoreRef
abstract StoreRef
NodeService.createStore(String protocol, String identifier)
          Create a new store for the given protocol and identifier.
NodeRef.getStoreRef()
AbstractStoreException.getStoreRef()
Methods in org.alfresco.service.cmr.repository that return types with arguments of type StoreRef
abstract List<StoreRef>
NodeService.getStores()
          Gets a list of all available node store references
Methods in org.alfresco.service.cmr.repository with parameters of type StoreRef
abstract void
NodeService.deleteStore(StoreRef storeRef)
          Delete a store and all its contents.
abstract boolean
NodeService.exists(StoreRef storeRef)
abstract Set<NodeRef>
NodeService.getAllRootNodes(StoreRef storeRef)
abstract NodeRef
NodeService.getRootNode(StoreRef storeRef)
abstract NodeRef
NodeService.getStoreArchiveNode(StoreRef storeRef)
          Get the node where archived items will have gone when deleted from the given store.
Constructors in org.alfresco.service.cmr.repository with parameters of type StoreRef
AbstractStoreException(StoreRef storeRef)
           
AbstractStoreException(StoreRef storeRef, Throwable e)
           
AbstractStoreException(String msg, StoreRef storeRef)
           
AbstractStoreException(String msg, StoreRef storeRef, Throwable e)
           
InvalidStoreRefException(StoreRef storeRef)
           
InvalidStoreRefException(String msg, StoreRef storeRef)
           
NodeRef(StoreRef storeRef, String id)
          Construct a Node Reference from a Store Reference and Node Id
StoreExistsException(StoreRef storeRef, Throwable e)
           
Uses of StoreRef in org.alfresco.service.cmr.search
Methods in org.alfresco.service.cmr.search that return types with arguments of type StoreRef
SearchParameters.getStores()
          Get the stores in which this query should find results.
Methods in org.alfresco.service.cmr.search with parameters of type StoreRef
void
SearchParameters.addStore(StoreRef store)
          Set the stores to be supported - currently there can be only one.
abstract NodeRef
CategoryService.createClassification(StoreRef storeRef, QName aspectName, String attributeName)
          Create a new category.
abstract NodeRef
CategoryService.createRootCategory(StoreRef storeRef, QName aspectName, String name)
          Create a new root category in the given classification
abstract void
CategoryService.deleteClassification(StoreRef storeRef, QName aspectName)
          Delete a classification
CategoryService.getCategories(StoreRef storeRef, QName aspectQName, org.alfresco.service.cmr.search.CategoryService.Depth depth)
          Get a list of all the categories appropriate for a given property.
CategoryService.getClassifications(StoreRef storeRef)
          Get all the classification entries
CategoryService.getRootCategories(StoreRef storeRef, QName aspectName)
          Get the root categories for an aspect/classification
CategoryService.getRootCategories(StoreRef storeRef, QName aspectName, PagingRequest pagingRequest, boolean sortByName)
          Get a paged list of the root categories for an aspect/classification
CategoryService.getRootCategories(StoreRef storeRef, QName aspectName, PagingRequest pagingRequest, boolean sortByName, String filter)
          Get a paged list of the root categories for an aspect/classification
CategoryService.getRootCategories(StoreRef storeRef, QName aspectName, String filter)
          Get the root categories for an aspect/classification with names that start with filter
CategoryService.getRootCategories(StoreRef storeRef, QName aspectName, String name, boolean create)
          Gets root categories by name, optionally creating one if one does not exist.
CategoryService.getTopCategories(StoreRef storeRef, QName aspectName, int count)
          Get the most polular categories
abstract ResultSet
SearchService.query(StoreRef store, QName queryId, QueryParameter[] queryParameters)
          Execute a canned query
abstract ResultSet
SearchService.query(StoreRef store, String language, String query)
          Search against a store.
abstract ResultSet
SearchService.query(StoreRef store, String language, String query, QueryParameterDefinition[] queryParameterDefinitions)
          Search against a store.
Uses of StoreRef in org.alfresco.service.cmr.security
Methods in org.alfresco.service.cmr.security with parameters of type StoreRef
abstract void
PermissionService.clearPermission(StoreRef storeRef, String authority)
          Clear all permission masks for an authority on a store
abstract void
PermissionService.deletePermission(StoreRef storeRef, String authority, String permission)
          Remove part of a permission mask on a store
abstract void
PermissionService.deletePermissions(StoreRef storeRef)
          Remove all permission mask on a store
PermissionService.getAllSetPermissions(StoreRef storeRef)
          Get all the AccessPermissions that are set for anyone for the given node
abstract void
PermissionService.setPermission(StoreRef storeRef, String authority, String permission, boolean allow)
          Add a permission mask to a store
Uses of StoreRef in org.alfresco.service.cmr.tagging
Methods in org.alfresco.service.cmr.tagging with parameters of type StoreRef
abstract NodeRef
TaggingService.changeTag(StoreRef storeRef, String existingTag, String newTag)
abstract NodeRef
TaggingService.createTag(StoreRef storeRef, String tag)
          Create a new tag
abstract void
TaggingService.deleteTag(StoreRef storeRef, String tag)
          Delete an existing tag and any references to it(cascade delete).
abstract List<NodeRef>
TaggingService.findTaggedNodes(StoreRef storeRef, String tag)
          Find all nodes that have been tagged with the specified tag.
abstract List<NodeRef>
TaggingService.findTaggedNodes(StoreRef storeRef, String tag, NodeRef nodeRef)
          Find all nodes that have been tagged with the specified tag and reside within the context of the node reference provided.
abstract List<Pair<String,Integer>>
TaggingService.findTaggedNodesAndCountByTagName(StoreRef storeRef)
          Get tagged nodes and count of nodes group by tag name
abstract Pair<List<String>,Integer>
TaggingService.getPagedTags(StoreRef storeRef, int fromTag, int pageSize)
          Get page of the tags currently available
abstract Pair<List<String>,Integer>
TaggingService.getPagedTags(StoreRef storeRef, String filter, int fromTag, int pageSize)
abstract NodeRef
TaggingService.getTagNodeRef(StoreRef storeRef, String tag)
          Gets the node reference for a given tag.
abstract List<String>
TaggingService.getTags(StoreRef storeRef)
          Get all the tags currently available
TaggingService.getTags(StoreRef storeRef, PagingRequest pagingRequest)
          Get a paged list of all the tags currently available
abstract List<String>
TaggingService.getTags(StoreRef storeRef, String filter)
          Get all the tags currently available that match the provided filter.
abstract boolean
TaggingService.isTag(StoreRef storeRef, String tag)
          Indicates whether the tag already exists
Uses of StoreRef in org.alfresco.service.cmr.version
Methods in org.alfresco.service.cmr.version that return StoreRef
abstract StoreRef
VersionService.getVersionStoreReference()
          Gets the reference to the version store

Overview  Package  Class   Use  Tree  Deprecated  Index  Help 
PREV   NEXT FRAMES    NO FRAMES    All Classes

Copyright © 2005–2018 Alfresco Software. All rights reserved.

Java API documentation generated with DocFlex/Javadoc 1.6.1 using JavadocPro template set.