Uses of Class
org.apache.jackrabbit.webdav.lock.Scope

Packages that use Scope
org.apache.jackrabbit.webdav   
org.apache.jackrabbit.webdav.lock Provides interfaces and classes for locking related issues. 
org.apache.jackrabbit.webdav.transaction Contains interfaces and classes related to transaction locks. 
 

Uses of Scope in org.apache.jackrabbit.webdav
 

Methods in org.apache.jackrabbit.webdav with parameters of type Scope
 boolean DavResource.isLockable(Type type, Scope scope)
          Returns true, if the this resource allows locking.
 boolean DavResource.hasLock(Type type, Scope scope)
          Returns true if a lock applies to this resource.
 ActiveLock DavResource.getLock(Type type, Scope scope)
          Return the lock present on this webdav resource or null if the resource is either not locked or not lockable at all.
 

Uses of Scope in org.apache.jackrabbit.webdav.lock
 

Fields in org.apache.jackrabbit.webdav.lock declared as Scope
static Scope Scope.EXCLUSIVE
           
static Scope Scope.SHARED
           
 

Methods in org.apache.jackrabbit.webdav.lock that return Scope
 Scope DefaultActiveLock.getScope()
          This is always an exclusive lock.
 Scope ActiveLock.getScope()
          Return the scope of this lock.
 Scope LockInfo.getScope()
          Return the lock scope or null if no 'lockinfo' element was passed to the constructor or did not contain an 'scope' element and the scope has not been set otherwise.
static Scope Scope.create(org.jdom.Element lockScope)
          Create a Scope object from the given Xml element.
static Scope Scope.create(String name, org.jdom.Namespace namespace)
          Create a Scope object from the given name and namespace.
 Scope LockEntry.getScope()
          Returns the scope of this lock entry.
 

Methods in org.apache.jackrabbit.webdav.lock with parameters of type Scope
 ActiveLock LockManager.getLock(Type type, Scope scope, DavResource resource)
          Retrieve the lock with the given type and scope that is applied to the given resource.
 ActiveLock SimpleLockManager.getLock(Type type, Scope scope, DavResource resource)
          Returns the lock applying to the given resource or null if no lock can be found.
 void SupportedLock.addEntry(Type type, Scope scope)
          Adds a capability to this lock support.
 boolean SupportedLock.isSupportedLock(Type type, Scope scope)
          Returns true if this a lock with the given type and scope is supported.
 void LockInfo.setScope(Scope scope)
          Set the lock scope.
 

Uses of Scope in org.apache.jackrabbit.webdav.transaction
 

Fields in org.apache.jackrabbit.webdav.transaction declared as Scope
static Scope TransactionConstants.LOCAL
          "local" lock scope constant.
static Scope TransactionConstants.GLOBAL
          "global" lock scope constant.
 

Methods in org.apache.jackrabbit.webdav.transaction that return Scope
 Scope TxActiveLock.getScope()
          Returns the scope of this lock which is either TransactionConstants.LOCAL or TransactionConstants.GLOBAL.
 Scope TxLockEntry.getScope()
          Returns either local or global scope depending on the initial construtor value.
 

Methods in org.apache.jackrabbit.webdav.transaction with parameters of type Scope
 ActiveLock TxLockManager.getLock(Type type, Scope scope, TransactionResource resource)
          Return the lock applied to the given resource or null
 



Copyright © 2005 . All Rights Reserved.