public class ProxyRepository extends Object
repository factory
.Constructor and Description |
---|
ProxyRepository(org.apache.jackrabbit.rmi.repository.RepositoryFactory factory)
Creates a proxy for the repository (or repositories) accessible
through the given factory.
|
Modifier and Type | Method and Description |
---|---|
String |
getDescriptor(String key)
Returns the descriptor with the given key from the proxied repository.
|
String[] |
getDescriptorKeys()
Returns the descriptor keys of the proxied repository, or an empty
array if the proxied repository can not be accessed.
|
Value |
getDescriptorValue(String key)
Returns the value of the descriptor with the given key from the proxied
repository.
|
Value[] |
getDescriptorValues(String key)
Returns the values of the descriptor with the given key from the proxied
repository.
|
boolean |
isSingleValueDescriptor(String key)
Checks whether the given key identifies a valid single-valued
descriptor key in the proxied repository.
|
boolean |
isStandardDescriptor(String key)
Returns true if the given key identifies a standard descriptor.
|
Session |
login()
Calls
Repository#login(Credentials, String) with
null arguments. |
Session |
login(Credentials credentials)
Calls
Repository#login(Credentials, String) with
the given credentials and a null workspace name. |
Session |
login(Credentials credentials,
String workspace)
Logs in to the proxied repository and returns the resulting session.
|
Session |
login(String workspace)
Calls
Repository#login(Credentials, String) with
null credentials and the given workspace name. |
public ProxyRepository(org.apache.jackrabbit.rmi.repository.RepositoryFactory factory)
factory
- repository factorypublic String[] getDescriptorKeys()
public boolean isSingleValueDescriptor(String key)
false
if the proxied repository can not be accessed.true
if the key identifies a valid single-valued
descriptor in the proxied repository,
false
otherwisepublic String getDescriptor(String key)
null
if the descriptor does not exist or if the
proxied repository can not be accessed.key
- descriptor keynull
public Value getDescriptorValue(String key)
null
if the descriptor does not exist
or if the proxied repository can not be accessed.key
- descriptor keynull
public Value[] getDescriptorValues(String key)
null
if the descriptor does not exist
or if the proxied repository can not be accessed.key
- descriptor keynull
public Session login(Credentials credentials, String workspace) throws RepositoryException
Note that the Session#getRepository()
method of the resulting
session will return the proxied repository, not this repository proxy!
RepositoryException
- if the proxied repository can not be
accessed, or if the login in the proxied
repository failspublic boolean isStandardDescriptor(String key)
key
- descriptor keytrue
if the key identifies a standard descriptor,
false
otherwisepublic Session login() throws RepositoryException
Repository#login(Credentials, String)
with
null
arguments.RepositoryException
- if an error occurspublic Session login(Credentials credentials) throws RepositoryException
Repository#login(Credentials, String)
with
the given credentials and a null
workspace name.credentials
- login credentialsRepositoryException
- if an error occurspublic Session login(String workspace) throws RepositoryException
Repository#login(Credentials, String)
with
null
credentials and the given workspace name.workspace
- workspace nameRepositoryException
- if an error occurs"Copyright © 2006 - 2015 Adobe Systems Incorporated. All Rights Reserved"