Uses of Interface
net.sf.webdav.ITransaction

Packages that use ITransaction
net.sf.webdav   
net.sf.webdav.locking   
net.sf.webdav.methods   
nl.buildersenperformers.chydav   
 

Uses of ITransaction in net.sf.webdav
 

Methods in net.sf.webdav that return ITransaction
 ITransaction LocalFileSystemStore.begin(Principal principal)
           
 ITransaction IWebdavStore.begin(Principal principal)
          Indicates that a new request or transaction with this store involved has been started.
 

Methods in net.sf.webdav with parameters of type ITransaction
 void LocalFileSystemStore.checkAuthentication(ITransaction transaction)
           
 void IWebdavStore.checkAuthentication(ITransaction transaction)
          Checks if authentication information passed in is valid.
 void LocalFileSystemStore.commit(ITransaction transaction)
           
 void IWebdavStore.commit(ITransaction transaction)
          Indicates that all changes done inside this request shall be made permanent and any transactions, connections and other temporary resources shall be terminated.
 void LocalFileSystemStore.createFolder(ITransaction transaction, String uri)
           
 void IWebdavStore.createFolder(ITransaction transaction, String folderUri)
          Creates a folder at the position specified by folderUri.
 void LocalFileSystemStore.createResource(ITransaction transaction, String uri)
           
 void IWebdavStore.createResource(ITransaction transaction, String resourceUri)
          Creates a content resource at the position specified by resourceUri.
 void IMethodExecutor.execute(ITransaction transaction, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp)
           
 String[] LocalFileSystemStore.getChildrenNames(ITransaction transaction, String uri)
           
 String[] IWebdavStore.getChildrenNames(ITransaction transaction, String folderUri)
          Gets the names of the children of the folder specified by folderUri.
 InputStream LocalFileSystemStore.getResourceContent(ITransaction transaction, String uri)
           
 InputStream IWebdavStore.getResourceContent(ITransaction transaction, String resourceUri)
          Gets the content of the resource specified by resourceUri.
 long LocalFileSystemStore.getResourceLength(ITransaction transaction, String uri)
           
 long IWebdavStore.getResourceLength(ITransaction transaction, String path)
          Gets the length of the content resource specified by resourceUri.
 StoredObject LocalFileSystemStore.getStoredObject(ITransaction transaction, String uri)
           
 StoredObject IWebdavStore.getStoredObject(ITransaction transaction, String uri)
          Gets the storedObject specified by uri
 void LocalFileSystemStore.removeObject(ITransaction transaction, String uri)
           
 void IWebdavStore.removeObject(ITransaction transaction, String uri)
          Removes the object specified by uri.
 void LocalFileSystemStore.rollback(ITransaction transaction)
           
 void IWebdavStore.rollback(ITransaction transaction)
          Indicates that all changes done inside this request shall be undone and any transactions, connections and other temporary resources shall be terminated.
 long LocalFileSystemStore.setResourceContent(ITransaction transaction, String uri, InputStream is, String contentType, String characterEncoding)
           
 long IWebdavStore.setResourceContent(ITransaction transaction, String resourceUri, InputStream content, String contentType, String characterEncoding)
          Sets / stores the content of the resource specified by resourceUri.
 

Uses of ITransaction in net.sf.webdav.locking
 

Methods in net.sf.webdav.locking with parameters of type ITransaction
 void ResourceLocks.checkTimeouts(ITransaction transaction, boolean temporary)
           
 void IResourceLocks.checkTimeouts(ITransaction transaction, boolean temporary)
          Deletes LockedObjects, where timeout has reached.
 boolean ResourceLocks.exclusiveLock(ITransaction transaction, String path, String owner, int depth, int timeout)
           
 boolean IResourceLocks.exclusiveLock(ITransaction transaction, String path, String owner, int depth, int timeout)
          Tries to lock the resource at "path" exclusively.
 LockedObject ResourceLocks.getLockedObjectByID(ITransaction transaction, String id)
           
 LockedObject IResourceLocks.getLockedObjectByID(ITransaction transaction, String id)
          Gets the LockedObject corresponding to specified id.
 LockedObject ResourceLocks.getLockedObjectByPath(ITransaction transaction, String path)
           
 LockedObject IResourceLocks.getLockedObjectByPath(ITransaction transaction, String path)
          Gets the LockedObject on specified path.
 LockedObject ResourceLocks.getTempLockedObjectByID(ITransaction transaction, String id)
           
 LockedObject IResourceLocks.getTempLockedObjectByID(ITransaction transaction, String id)
          Gets the LockedObject corresponding to specified id (locktoken).
 LockedObject ResourceLocks.getTempLockedObjectByPath(ITransaction transaction, String path)
           
 LockedObject IResourceLocks.getTempLockedObjectByPath(ITransaction transaction, String path)
          Gets the LockedObject on specified path.
 boolean ResourceLocks.lock(ITransaction transaction, String path, String owner, boolean exclusive, int depth, int timeout, boolean temporary)
           
 boolean IResourceLocks.lock(ITransaction transaction, String path, String owner, boolean exclusive, int depth, int timeout, boolean temporary)
          Tries to lock the resource at "path".
 boolean ResourceLocks.sharedLock(ITransaction transaction, String path, String owner, int depth, int timeout)
           
 boolean IResourceLocks.sharedLock(ITransaction transaction, String path, String owner, int depth, int timeout)
          Tries to lock the resource at "path" shared.
 boolean ResourceLocks.unlock(ITransaction transaction, String id, String owner)
           
 boolean IResourceLocks.unlock(ITransaction transaction, String id, String owner)
          Unlocks all resources at "path" (and all subfolders if existing)

that have the same owner.

 void ResourceLocks.unlockTemporaryLockedObjects(ITransaction transaction, String path, String owner)
           
 void IResourceLocks.unlockTemporaryLockedObjects(ITransaction transaction, String path, String owner)
          Unlocks all resources at "path" (and all subfolders if existing)

that have the same owner.

 

Uses of ITransaction in net.sf.webdav.methods
 

Methods in net.sf.webdav.methods with parameters of type ITransaction
protected  boolean AbstractMethod.checkLocks(ITransaction transaction, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp, IResourceLocks resourceLocks, String path)
          Checks if locks on resources at the given path exists and if so checks the If-Header to make sure the If-Header corresponds to the locked resource.
 boolean DoCopy.copyResource(ITransaction transaction, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp)
          Copy a resource.
 void DoDelete.deleteResource(ITransaction transaction, String path, Hashtable<String,Integer> errorList, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp)
          deletes the recources at "path"
protected  void DoHead.doBody(ITransaction transaction, javax.servlet.http.HttpServletResponse resp, String path)
           
protected  void DoGet.doBody(ITransaction transaction, javax.servlet.http.HttpServletResponse resp, String path)
           
 void DoUnlock.execute(ITransaction transaction, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp)
           
 void DoPut.execute(ITransaction transaction, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp)
           
 void DoProppatch.execute(ITransaction transaction, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp)
           
 void DoPropfind.execute(ITransaction transaction, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp)
           
 void DoOptions.execute(ITransaction transaction, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp)
           
 void DoNotImplemented.execute(ITransaction transaction, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp)
           
 void DoMove.execute(ITransaction transaction, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp)
           
 void DoMkcol.execute(ITransaction transaction, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp)
           
 void DoLock.execute(ITransaction transaction, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp)
           
 void DoHead.execute(ITransaction transaction, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp)
           
 void DoDelete.execute(ITransaction transaction, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp)
           
 void DoCopy.execute(ITransaction transaction, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp)
           
protected  void DoHead.folderBody(ITransaction transaction, String path, javax.servlet.http.HttpServletResponse resp, javax.servlet.http.HttpServletRequest req)
           
protected  void DoGet.folderBody(ITransaction transaction, String path, javax.servlet.http.HttpServletResponse resp, javax.servlet.http.HttpServletRequest req)
           
 

Uses of ITransaction in nl.buildersenperformers.chydav
 

Classes in nl.buildersenperformers.chydav that implement ITransaction
 class DavTransaction
           
 

Methods in nl.buildersenperformers.chydav that return ITransaction
 ITransaction ChyWebdavStore.begin(Principal principal)
           
 

Methods in nl.buildersenperformers.chydav with parameters of type ITransaction
 void ChyWebdavStore.checkAuthentication(ITransaction pArg0)
           
 void ChyWebdavStore.commit(ITransaction pArg0)
           
 void ChyWebdavStore.createFolder(ITransaction pArg0, String pArg1)
           
 void ChyWebdavStore.createResource(ITransaction pArg0, String path)
           
 String[] ChyWebdavStore.getChildrenNames(ITransaction trx, String path)
           
 InputStream ChyWebdavStore.getResourceContent(ITransaction trx, String path)
           
 long ChyWebdavStore.getResourceLength(ITransaction pArg0, String path)
           
 StoredObject ChyWebdavStore.getStoredObject(ITransaction trx, String path)
           
 void ChyWebdavStore.removeObject(ITransaction pArg0, String pArg1)
           
 void ChyWebdavStore.rollback(ITransaction pArg0)
           
 long ChyWebdavStore.setResourceContent(ITransaction trx, String uri, InputStream content, String contentType, String characterEncoding)
           
 



Copyright © 2013 KnowledgePlaza. All Rights Reserved.