Uses of Class
org.eclipse.webdav.internal.kernel.DAVException

Packages that use DAVException
org.eclipse.webdav.client Provides support for the WebDAV protocol. 
org.eclipse.webdav.internal.kernel   
 

Uses of DAVException in org.eclipse.webdav.client
 

Methods in org.eclipse.webdav.client that throw DAVException
 void CollectionHandle.baselineControl()
          Bring the receiver under baseline control.
 void CollectionHandle.baselineControl(ILocator baseline)
          Create a new version-controlled configuration on the given baseline.
 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.
 boolean AbstractResourceHandle.canTalkDAV()
          Return a boolean value indicating whether or not the server for this resource is DAV compliant.
 ResourceHandle AbstractResourceHandle.checkIn()
          Check-in this resource.
 AbstractResourceHandle CollectionHandle.checkOut()
          Check out this resource.
 AbstractResourceHandle ResourceHandle.checkOut()
          Check out this resource.
 AbstractResourceHandle WorkspaceHandle.checkOut()
          Check out this resource.
abstract  AbstractResourceHandle AbstractResourceHandle.checkOut()
          Check out this resource.
 void AbstractResourceHandle.copy(ILocator destination)
          Make a copy of this resource and place it at the location defined by the given locator.
 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.
 void CollectionHandle.create()
          Create this collection in the repository.
 void ResourceHandle.create()
          Persistently create this resource instance in the repository.
 void WorkspaceHandle.create()
          Create a new workspace in the location described by this handle.
abstract  void AbstractResourceHandle.create()
          Create this resource in the repository.
 void AbstractResourceHandle.delete()
          Delete this resource from the repository.
 void AbstractResourceHandle.delete(boolean mustExist)
          Delete this resource from the repository, optionally succeeding in the delete if the resource was not found on the server.
protected  void AbstractResourceHandle.examineMultiStatusResponse(IResponse response)
          If the given response contains a multistatus body, the bodies status' are checked for errors.
 boolean AbstractResourceHandle.exists()
          Return a boolean value indicating whether or not this resource exists on the server.
 CollectionHandle CollectionHandle.getCollectionHandle(String name)
          Answer the given member of the receiver as a collection handle.
 ResponseInputStream AbstractResourceHandle.getContent()
          Return the content of this resource as an input stream.
 Enumeration AbstractResourceHandle.getLocks()
          Return an Enumeration over ActiveLocks which lists the locks currently held on this resource.
 Set CollectionHandle.getMembers()
          Return a set of handles representing the members of this collection.
 CollectionHandle AbstractResourceHandle.getParent()
          Returns a collection handle for the parent of this resource.
 URLTable AbstractResourceHandle.getProperties(Collection propertyNames, String depth)
          Fetches and returns the specified properties for this resource and its children to the given depth.
 URLTable AbstractResourceHandle.getProperties(String depth)
          Return a URLTable which contains all of this resources properties to the given depth.
 PropertyStatus AbstractResourceHandle.getProperty(QualifiedName propertyName)
          Return the property status for the property with the given name.
 URLTable AbstractResourceHandle.getPropertyNames(String depth)
          Fetch and return the property names for the resource, and the children resources to the specified depth.
 ResourceHandle CollectionHandle.getResourceHandle(String name)
           
 URLTable AbstractResourceHandle.getVersionTree()
          Retrieve the version tree infomration for the receiver, assuming that the receiver is a version or a version-controlled resource.
 CollectionHandle[] AbstractResourceHandle.getWorkspaceCollections()
           
 WorkspaceHandle CollectionHandle.getWorkspaceHandle(String name)
           
 IContext AbstractResourceHandle.head()
          Return the header from a message send to the server.
 boolean ResourceHandle.isActivity()
          Check to see if the resource is an activity resource.
 boolean ResourceHandle.isBaseline()
          Check to see if the resource is a baseline resource.
 boolean AbstractResourceHandle.isCheckedIn()
          Check to see if the resource is checked in (i.e., is an immutable resource).
 boolean AbstractResourceHandle.isCheckedOut()
          Check to see if the resource is checked-out.
 boolean AbstractResourceHandle.isCollection()
          Return a boolean value indicating whether or not this resource is a collection.
 boolean AbstractResourceHandle.isLocked()
          Return a boolean value indicating whether or not this resource is currently locked.
 boolean AbstractResourceHandle.isVersion()
          Check to see if the resource is a version.
 boolean AbstractResourceHandle.isVersionControlled()
          Check to see if the resource is under version control.
 boolean ResourceHandle.isVersionControlledConfiguration()
          Check to see if the resource is a version-controlled configuration resource.
 boolean ResourceHandle.isVersionHistory()
          Check to see if the resource is a version history resource.
 boolean AbstractResourceHandle.isWorkingResource()
          Check to see if the resource is a working resource.
 boolean CollectionHandle.isWorkspace()
          Check to see if the receiver is a workspace resource.
 LockToken AbstractResourceHandle.lock()
          Lock this resource with default values.
 LockToken AbstractResourceHandle.lock(boolean isShared, String depth, int timeout, String owner)
          Lock this resource using the specified parameters.
 void CollectionHandle.mkdirs()
          Create the receiver and any parent collections that must be created on the path to the receiver.
protected  void CollectionHandle.mkdirs(CollectionHandle handle)
           
 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.
protected  boolean AbstractResourceHandle.propertyHasChild(QualifiedName propertyName, QualifiedName childName)
          This is a helper method to check to see if the resource has a property with the given name that in turn has a child with a given name.
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.
 void AbstractResourceHandle.refreshLock(LockToken lockToken, int timeout)
          Refresh the lock on this resource with the given lock token.
 void AbstractResourceHandle.removeProperties(Collection propertyNames)
          Remove the properties with the given names, from this resource.
 void AbstractResourceHandle.removeProperty(QualifiedName propertyName)
          Remove the property with the given name from this resource.
 void AbstractResourceHandle.setContent(InputStream input)
          Set the content of this resource to be the untyped data stored in the given input stream.
 void AbstractResourceHandle.setContent(String contentType, InputStream input)
          Set the content of this resource to be the data stored in the given input stream.
 void AbstractResourceHandle.setProperties(Collection properties)
          Set the given properties on this resource.
 void AbstractResourceHandle.setProperty(Element property)
          Set the given property on this resource.
 boolean AbstractResourceHandle.supportsLiveProperty(QualifiedName propertyName)
          Check to see if the resource supports the named live property.
 ResponseInputStream AbstractResourceHandle.trace()
          Send a message to the server.
 void AbstractResourceHandle.unlock(LockToken token)
          Unlock this resource with the given lock token.
 void AbstractResourceHandle.update(ILocator version)
          Perform an UPDATE on the receiver to set the version it is based upon.
 void AbstractResourceHandle.versionControl()
          Bring the receiver under version control.
 

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

Subclasses of DAVException in org.eclipse.webdav.internal.kernel
 class ClientException
          Represents exceptions that can happen on the Client as the result of a client error.
 class RedirectionException
          Represents exceptions that require further action by the user agent in order to fulfill the request.
 class ServerException
          Represents exceptions that can happen on the server as the result of a server error.
 class SystemException
           
 class WebDAVException
          This is the superclass of all WebDAV protocol exceptions It contains a status code that provides information, and a descriptive message.
 



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