Package org.ametys.cms.indexing
Interface WorkspaceIndexer
-
- All Known Implementing Classes:
SolrWebWorkspaceIndexer,SolrWorkspaceIndexer
public interface WorkspaceIndexer
Component indexing a workspace.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidindex(String workspaceName)Index a workspace.voidindexAllWorkspaces()Index all the workspaces.
-
-
-
Method Detail
-
indexAllWorkspaces
void indexAllWorkspaces() throws IndexingException
Index all the workspaces.- Throws:
IndexingException- If an error occurs while indexing.
-
index
void index(String workspaceName) throws IndexingException
Index a workspace.- Parameters:
workspaceName- The workspace name.- Throws:
IndexingException- If an error occurs while indexing the workspace.
-
-