|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.jackrabbit.commons.AbstractWorkspace
org.apache.jackrabbit.core.WorkspaceImpl
public class WorkspaceImpl
A WorkspaceImpl ...
| Field Summary | |
|---|---|
protected CachingHierarchyManager |
hierMgr
The hierarchy mgr that reflects persistent state only (i.e. |
protected LockManager |
lockMgr
The LockManager for this Workspace |
protected ObservationManagerImpl |
obsMgr
The ObservationManager instance for this session. |
protected QueryManagerImpl |
queryManager
The QueryManager for this Workspace. |
protected RepositoryImpl |
rep
The repository that created this workspace instance |
protected SessionImpl |
session
the session that was used to acquire this Workspace |
protected LocalItemStateManager |
stateMgr
The persistent state mgr associated with the workspace represented by this Workspace instance. |
protected VersionManagerImpl |
versionMgr
The API Version manager for this workspace |
protected WorkspaceConfig |
wspConfig
The configuration of this Workspace |
| Constructor Summary | |
|---|---|
protected |
WorkspaceImpl(WorkspaceConfig wspConfig,
SharedItemStateManager stateMgr,
RepositoryImpl rep,
SessionImpl session)
Protected constructor. |
| Method Summary | |
|---|---|
void |
clone(String srcWorkspace,
String srcAbsPath,
String destAbsPath,
boolean removeExisting)
|
void |
copy(String srcAbsPath,
String destAbsPath)
|
void |
copy(String srcWorkspace,
String srcAbsPath,
String destAbsPath)
|
EventStateCollection |
createEventStateCollection()
Creates an EventStateCollection. |
protected LocalItemStateManager |
createItemStateManager(SharedItemStateManager shared)
Create the persistent item state manager on top of the shared item state manager. |
void |
createWorkspace(String name)
Creates a new Workspace with the specified
name. |
void |
createWorkspace(String workspaceName,
InputSource configTemplate)
Creates a workspace with the given name and a workspace configuration template. |
void |
createWorkspace(String name,
String srcWorkspace)
|
void |
deleteWorkspace(String name)
Always throws UnsupportedRepositoryOperationException since
removal of workspaces is currently not supported. |
String[] |
getAccessibleWorkspaceNames()
|
WorkspaceConfig |
getConfig()
Returns the configuration of this workspace. |
HierarchyManager |
getHierarchyManager()
The hierarchy manager that reflects workspace state only (i.e. |
ContentHandler |
getImportContentHandler(String parentAbsPath,
int uuidBehavior)
|
LockManager |
getInternalLockManager()
Return the lock manager for this workspace. |
LocalItemStateManager |
getItemStateManager()
Returns the item state manager associated with the workspace represented by this WorkspaceImpl instance. |
LockManager |
getLockManager()
|
String |
getName()
|
NamespaceRegistry |
getNamespaceRegistry()
|
NodeTypeManager |
getNodeTypeManager()
|
ObservationManager |
getObservationManager()
Returns the observation manager of this session. |
QueryManager |
getQueryManager()
|
Session |
getSession()
|
VersionManager |
getVersionManager()
|
void |
move(String srcAbsPath,
String destAbsPath)
|
void |
restore(Version[] versions,
boolean removeExisting)
Deprecated. |
void |
sanityCheck()
Performs a sanity check on this workspace and the associated session. |
| Methods inherited from class org.apache.jackrabbit.commons.AbstractWorkspace |
|---|
importXML |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface javax.jcr.Workspace |
|---|
importXML |
| Field Detail |
|---|
protected final WorkspaceConfig wspConfig
Workspace
protected final RepositoryImpl rep
protected final LocalItemStateManager stateMgr
Workspace instance.
protected final CachingHierarchyManager hierMgr
protected ObservationManagerImpl obsMgr
ObservationManager instance for this session.
protected QueryManagerImpl queryManager
QueryManager for this Workspace.
protected final SessionImpl session
Workspace
protected LockManager lockMgr
LockManager for this Workspace
protected VersionManagerImpl versionMgr
| Constructor Detail |
|---|
protected WorkspaceImpl(WorkspaceConfig wspConfig,
SharedItemStateManager stateMgr,
RepositoryImpl rep,
SessionImpl session)
wspConfig - The workspace configurationstateMgr - The shared item state managerrep - The repositorysession - The session| Method Detail |
|---|
public HierarchyManager getHierarchyManager()
public LocalItemStateManager getItemStateManager()
WorkspaceImpl instance.
public void sanityCheck()
throws RepositoryException
RepositoryException - if this workspace has been rendered invalid
for some reason
public void createWorkspace(String name,
String srcWorkspace)
throws AccessDeniedException,
UnsupportedRepositoryOperationException,
RepositoryException
createWorkspace in interface WorkspaceAccessDeniedException
UnsupportedRepositoryOperationException
RepositoryException
public void deleteWorkspace(String name)
throws AccessDeniedException,
UnsupportedRepositoryOperationException,
RepositoryException
UnsupportedRepositoryOperationException since
removal of workspaces is currently not supported.
deleteWorkspace in interface WorkspaceAccessDeniedException
UnsupportedRepositoryOperationException
RepositoryException
public LockManager getLockManager()
throws UnsupportedRepositoryOperationException,
RepositoryException
getLockManager in interface WorkspaceUnsupportedRepositoryOperationException
RepositoryExceptionWorkspace.getLockManager(),
LockManagerpublic VersionManager getVersionManager()
getVersionManager in interface WorkspaceWorkspace.getVersionManager()
public void createWorkspace(String name)
throws AccessDeniedException,
UnsupportedRepositoryOperationException,
RepositoryException
Workspace with the specified
name. The new workspace is empty, meaning it contains only
root node.
The new workspace can be accessed through a login
specifying its name.
Throws an AccessDeniedException if the session through which
this Workspace object was acquired does not have permission
to create the new workspace.
Throws an UnsupportedRepositoryOperationException if the repository does
not support the creation of workspaces.
A RepositoryException is thrown if another error occurs.
createWorkspace in interface WorkspacecreateWorkspace in interface JackrabbitWorkspacename - A String, the name of the new workspace.
AccessDeniedException - if the session through which
this Workspace object was acquired does not have permission
to create the new workspace.
UnsupportedRepositoryOperationException - if the repository does
not support the creation of workspaces.
RepositoryException - if another error occurs.
public void createWorkspace(String workspaceName,
InputSource configTemplate)
throws AccessDeniedException,
RepositoryException
createWorkspace in interface JackrabbitWorkspaceworkspaceName - name of the new workspaceconfigTemplate - the configuration template of the new workspace
AccessDeniedException - if the current session is not allowed to
create the workspace
RepositoryException - if a workspace with the given name
already exists or if another error occursgetAccessibleWorkspaceNames()public WorkspaceConfig getConfig()
public LockManager getInternalLockManager()
throws RepositoryException
RepositoryException - if an error occurspublic String getName()
getName in interface Workspacepublic Session getSession()
getSession in interface Workspace
public NamespaceRegistry getNamespaceRegistry()
throws RepositoryException
getNamespaceRegistry in interface WorkspaceRepositoryException
public NodeTypeManager getNodeTypeManager()
throws RepositoryException
getNodeTypeManager in interface WorkspaceRepositoryException
public void clone(String srcWorkspace,
String srcAbsPath,
String destAbsPath,
boolean removeExisting)
throws NoSuchWorkspaceException,
ConstraintViolationException,
VersionException,
AccessDeniedException,
PathNotFoundException,
ItemExistsException,
LockException,
RepositoryException
clone in interface WorkspaceNoSuchWorkspaceException
ConstraintViolationException
VersionException
AccessDeniedException
PathNotFoundException
ItemExistsException
LockException
RepositoryException
public void copy(String srcAbsPath,
String destAbsPath)
throws ConstraintViolationException,
VersionException,
AccessDeniedException,
PathNotFoundException,
ItemExistsException,
LockException,
RepositoryException
copy in interface WorkspaceConstraintViolationException
VersionException
AccessDeniedException
PathNotFoundException
ItemExistsException
LockException
RepositoryException
public void copy(String srcWorkspace,
String srcAbsPath,
String destAbsPath)
throws NoSuchWorkspaceException,
ConstraintViolationException,
VersionException,
AccessDeniedException,
PathNotFoundException,
ItemExistsException,
LockException,
RepositoryException
copy in interface WorkspaceNoSuchWorkspaceException
ConstraintViolationException
VersionException
AccessDeniedException
PathNotFoundException
ItemExistsException
LockException
RepositoryException
public void move(String srcAbsPath,
String destAbsPath)
throws ConstraintViolationException,
VersionException,
AccessDeniedException,
PathNotFoundException,
ItemExistsException,
LockException,
RepositoryException
move in interface WorkspaceConstraintViolationException
VersionException
AccessDeniedException
PathNotFoundException
ItemExistsException
LockException
RepositoryException
public ObservationManager getObservationManager()
throws RepositoryException
getObservationManager in interface WorkspaceRepositoryException - if a repository error occurs
public QueryManager getQueryManager()
throws RepositoryException
getQueryManager in interface WorkspaceRepositoryException
@Deprecated
public void restore(Version[] versions,
boolean removeExisting)
throws ItemExistsException,
UnsupportedRepositoryOperationException,
VersionException,
LockException,
InvalidItemStateException,
RepositoryException
restore in interface WorkspaceItemExistsException
UnsupportedRepositoryOperationException
VersionException
LockException
InvalidItemStateException
RepositoryException
public String[] getAccessibleWorkspaceNames()
throws RepositoryException
getAccessibleWorkspaceNames in interface WorkspaceRepositoryException
public ContentHandler getImportContentHandler(String parentAbsPath,
int uuidBehavior)
throws PathNotFoundException,
ConstraintViolationException,
VersionException,
LockException,
RepositoryException
getImportContentHandler in interface WorkspacePathNotFoundException
ConstraintViolationException
VersionException
LockException
RepositoryExceptionprotected LocalItemStateManager createItemStateManager(SharedItemStateManager shared)
shared - shared item state manager
public EventStateCollection createEventStateCollection()
throws RepositoryException
EventStateCollection.
Implemented in this object and forwarded rather than obsMgr
since creation of the latter is lazy.
createEventStateCollection in interface EventStateCollectionFactoryEventStateCollection
RepositoryException - if creation fails for some reason
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||