Uses of Interface
org.eclipse.webdav.ILocator

Packages that use ILocator
org.eclipse.webdav Provides infrastructure objects for communicating with WebDAV/HTTP servers. 
org.eclipse.webdav.client Provides support for the WebDAV protocol. 
org.eclipse.webdav.internal.kernel   
 

Uses of ILocator in org.eclipse.webdav
 

Methods in org.eclipse.webdav that return ILocator
 ILocator ILocatorFactory.newLocator(String resourceURL)
          Returns a locator with the given resource URL that (implicitly) uses the standard way of resolving resource URLs.
 ILocator ILocatorFactory.newLocator(String requestURL, String label)
          Returns a locator with the given resource URL and label.
 ILocator ILocatorFactory.newStableLocator(String resourceURL)
          Returns a locator given a stable resource URL.
 

Methods in org.eclipse.webdav with parameters of type ILocator
 IResponse IServer.baselineControl(ILocator locator, IContext context, Document body)
          Corresponds to the BASELINE-CONTROL method defined in the WebDAV Versioning Specification.
 IResponse IServer.bind(ILocator source, ILocator destination, IContext context)
          Binds the given source locator, to the given destination.
 IResponse IServer.checkin(ILocator locator, IContext context, Document body)
          Corresponds to the CHECKIN method defined in the WebDAV Versioning Specification.
 IResponse IServer.checkout(ILocator locator, IContext context, Document body)
          Corresponds to the CHECKOUT method defined in the WebDAV Versioning Specification.
 IResponse IServer.copy(ILocator source, ILocator destination, IContext context, Document body)
          Copies the resource with the given locator, to the given destination.
 IResponse IServer.delete(ILocator locator, IContext context)
          Deletes the resource with the given locator.
 IResponse IServer.get(ILocator locator, IContext context)
          Gets the content of the resource with the given locator.
 IResponse IServer.head(ILocator locator, IContext context)
          Returns the message headers from a message send to the server.
 IResponse IServer.label(ILocator locator, IContext context, Document body)
          Corresponds to the LABEL method defined in the WebDAV Versioning Specification.
 IResponse IServer.lock(ILocator locator, IContext context, Document body)
          Locks the resource with the given locator.
 IResponse IServer.merge(ILocator locator, IContext context, Document body)
          Corresponds to the MERGE method defined in the WebDAV Versioning Specification.
 IResponse IServer.mkactivity(ILocator locator, IContext context, Document element)
          Creates an activity as specified by the given locator.
 IResponse IServer.mkcol(ILocator locator, IContext context, Document element)
          Creates the collection specified by the given locator.
 IResponse IServer.mkworkspace(ILocator locator, IContext context, Document element)
          Creates a workspace as specified by the given locator.
 IResponse IServer.move(ILocator source, ILocator destination, IContext context, Document body)
          Moves the resource with the given source locator, to the specified destination.
 IResponse IServer.options(ILocator locator, IContext context)
          Performs an options call to the server.
 IResponse IServer.post(ILocator locator, IContext context, InputStream input)
          Corresponds to the POST method as defined by the HTTP/1.1 specification.
 IResponse IServer.propfind(ILocator locator, IContext context, Document body)
          Performs a property find on the server.
 IResponse IServer.proppatch(ILocator locator, IContext context, Document body)
          Performs a property patch call on the server.
 IResponse IServer.put(ILocator locator, IContext context, InputStream input)
          Puts the given contents onto the server into the specified location.
 IResponse IServer.report(ILocator locator, IContext context, Document body)
          Corresponds to the REPORT method defined in the WebDAV Versioning Specification.
 IResponse IServer.trace(ILocator locator, IContext context)
          Does a trace call to the server.
 IResponse IServer.uncheckout(ILocator locator, IContext context)
          Corresponds to the UNCHECKOUT method defined in the WebDAV Versioning Specification.
 IResponse IServer.unlock(ILocator locator, IContext context)
          Unlocks the resource with the given locator.
 IResponse IServer.update(ILocator locator, IContext context, Document body)
          Performs an update call on the server.
 IResponse IServer.versionControl(ILocator locator, IContext context, Document body)
          Corresponds to the VERSION-CONTROL method defined in the WebDAV Versioning Specification.
 

Uses of ILocator in org.eclipse.webdav.client
 

Fields in org.eclipse.webdav.client declared as ILocator
protected  ILocator AbstractResourceHandle.locator
           
 

Methods in org.eclipse.webdav.client that return ILocator
 ILocator AbstractResourceHandle.getLocator()
          Return the locator for this resource.
 ILocator CollectionHandle.getMember(String memberName)
          Return the locator of the member of this collection, with the given name.
 ILocator WebDAVFactory.newLocator(String resourceURL)
           
 ILocator WebDAVFactory.newLocator(String resourceURL, String label)
          Answer a new resource locator that identifies a particular server resource by it's URL and label.
 ILocator WebDAVFactory.newStableLocator(String resourceURL)
           
protected  ILocator AbstractResourceHandle.protectedCheckIn()
          Check in the receiver and answer a new Locator on the resulting version resource.
protected  ILocator AbstractResourceHandle.protectedCheckOut()
          Check out the receiver and answer a new Locator on the resulting checked out resource.
 

Methods in org.eclipse.webdav.client with parameters of type ILocator
 void CollectionHandle.baselineControl(ILocator baseline)
          Create a new version-controlled configuration on the given baseline.
 IResponse RemoteDAVClient.baselineControl(ILocator locator, IContext userContext, Document document)
           
 IResponse LocalDAVClient.baselineControl(ILocator locator, IContext context, Document body)
           
 IResponse RemoteDAVClient.bind(ILocator source, ILocator destination, IContext userContext)
           
 IResponse LocalDAVClient.bind(ILocator source, ILocator destination, IContext context)
           
 void CollectionHandle.bind(String member, ILocator source)
          Binds the given member in this collection to the resource identified by the given source locator.
 void CollectionHandle.bind(String member, ILocator source, boolean overwrite)
          Binds the given member in this collection to the resource identified by the given source locator.
 IResponse RemoteDAVClient.checkin(ILocator locator, IContext userContext, Document document)
           
 IResponse LocalDAVClient.checkin(ILocator locator, IContext context, Document body)
           
 IResponse RemoteDAVClient.checkout(ILocator locator, IContext userContext, Document body)
           
 IResponse LocalDAVClient.checkout(ILocator locator, IContext context, Document body)
           
 void AbstractResourceHandle.copy(ILocator destination)
          Make a copy of this resource and place it at the location defined by the given locator.
 IResponse RemoteDAVClient.copy(ILocator source, ILocator destination, IContext userContext, Document document)
           
 IResponse LocalDAVClient.copy(ILocator source, ILocator destination, IContext context, Document body)
           
 void AbstractResourceHandle.copy(ILocator destination, String depth, boolean overwrite, Collection propertyNames)
          Make a copy of this resource and place it at the location specified by the given destination locator.
 IResponse RemoteDAVClient.delete(ILocator locator, IContext userContext)
           
 IResponse LocalDAVClient.delete(ILocator locator, IContext context)
           
 IResponse RemoteDAVClient.get(ILocator locator, IContext userContext)
           
 IResponse LocalDAVClient.get(ILocator locator, IContext context)
           
 IResponse RemoteDAVClient.head(ILocator locator, IContext userContext)
           
 IResponse LocalDAVClient.head(ILocator locator, IContext context)
           
 IResponse RemoteDAVClient.label(ILocator locator, IContext userContext, Document document)
           
 IResponse LocalDAVClient.label(ILocator locator, IContext context, Document body)
           
 IResponse RemoteDAVClient.lock(ILocator locator, IContext userContext, Document document)
           
 IResponse LocalDAVClient.lock(ILocator locator, IContext context, Document body)
           
 IResponse RemoteDAVClient.merge(ILocator locator, IContext userContext, Document document)
           
 IResponse LocalDAVClient.merge(ILocator locator, IContext context, Document body)
           
 IResponse RemoteDAVClient.mkactivity(ILocator locator, IContext userContext, Document document)
           
 IResponse LocalDAVClient.mkactivity(ILocator locator, IContext context, Document body)
           
 IResponse RemoteDAVClient.mkcol(ILocator locator, IContext userContext, Document document)
           
 IResponse LocalDAVClient.mkcol(ILocator locator, IContext context, Document element)
           
 IResponse RemoteDAVClient.mkworkspace(ILocator locator, IContext userContext, Document document)
           
 IResponse LocalDAVClient.mkworkspace(ILocator locator, IContext context, Document body)
           
 void AbstractResourceHandle.move(ILocator destination)
          Move this resource to the destination specified by the given locator.
 void AbstractResourceHandle.move(ILocator destination, boolean overwrite, Enumeration names)
          Move this resource to the location specified by the given locator.
 IResponse RemoteDAVClient.move(ILocator source, ILocator destination, IContext userContext, Document document)
           
 IResponse LocalDAVClient.move(ILocator source, ILocator destination, IContext context, Document body)
           
protected  IContext DAVClient.newContext(IContext userContext, ILocator locator)
          Returns a new context that is based on the given context.
 IResponse RemoteDAVClient.options(ILocator locator, IContext userContext)
           
 IResponse LocalDAVClient.options(ILocator locator, IContext context)
           
 IResponse RemoteDAVClient.post(ILocator locator, IContext userContext, InputStream is)
           
 IResponse LocalDAVClient.post(ILocator locator, IContext context, InputStream input)
           
 IResponse RemoteDAVClient.propfind(ILocator locator, IContext userContext, Document document)
           
 IResponse LocalDAVClient.propfind(ILocator locator, IContext context, Document body)
           
 IResponse RemoteDAVClient.proppatch(ILocator locator, IContext userContext, Document document)
           
 IResponse LocalDAVClient.proppatch(ILocator locator, IContext context, Document body)
           
 IResponse RemoteDAVClient.put(ILocator locator, IContext userContext, InputStream is)
           
 IResponse LocalDAVClient.put(ILocator locator, IContext context, InputStream input)
           
 IResponse RemoteDAVClient.report(ILocator locator, IContext userContext, Document document)
           
 IResponse LocalDAVClient.report(ILocator locator, IContext context, Document body)
           
 IResponse RemoteDAVClient.trace(ILocator locator, IContext userContext)
           
 IResponse LocalDAVClient.trace(ILocator locator, IContext context)
           
 IResponse RemoteDAVClient.uncheckout(ILocator locator, IContext userContext)
           
 IResponse LocalDAVClient.uncheckout(ILocator locator, IContext context)
           
 IResponse RemoteDAVClient.unlock(ILocator locator, IContext userContext)
           
 IResponse LocalDAVClient.unlock(ILocator locator, IContext context)
           
 void AbstractResourceHandle.update(ILocator version)
          Perform an UPDATE on the receiver to set the version it is based upon.
 IResponse RemoteDAVClient.update(ILocator locator, IContext userContext, Document body)
           
 IResponse LocalDAVClient.update(ILocator locator, IContext context, Document body)
           
 IResponse RemoteDAVClient.versionControl(ILocator locator, IContext userContext, Document body)
           
 IResponse LocalDAVClient.versionControl(ILocator locator, IContext context, Document body)
           
 

Constructors in org.eclipse.webdav.client with parameters of type ILocator
AbstractResourceHandle(DAVClient davClient, ILocator locator)
          Creates a new AbstractResourceHandle with the given DAV client and Locator.
CollectionHandle(DAVClient davClient, ILocator locator)
          Creates a new CollectionHandle from the given DAVClient and Locator.
ResourceHandle(DAVClient davClient, ILocator locator)
          Creates a new ResourceHandle from the given DAVClient and Locator.
WorkspaceHandle(DAVClient davClient, ILocator locator)
           
 

Uses of ILocator in org.eclipse.webdav.internal.kernel
 

Classes in org.eclipse.webdav.internal.kernel that implement ILocator
 class Locator
          A LocatorImpl uniquely identifies a DAV a resource.
 

Methods in org.eclipse.webdav.internal.kernel that return ILocator
 ILocator LocatorFactory.newLocator(String resourceURL)
           
 ILocator LocatorFactory.newLocator(String resourceURL, String label)
          Deprecated. -- not really deprecated, just a warning the second argument used to be the workspace URL but is now a version label!
 ILocator LocatorFactory.newStableLocator(String resourceURL)
           
 



Copyright © 2001-2014 JBoss by Red Hat. All Rights Reserved.