|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use IContext | |
---|---|
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.http.client | Provides support for the HTTP protocol. |
org.eclipse.webdav.internal.authentication | |
org.eclipse.webdav.internal.kernel |
Uses of IContext in org.eclipse.webdav |
---|
Methods in org.eclipse.webdav that return IContext | |
---|---|
IContext |
IResponse.getContext()
Returns this response's header fields. |
IContext |
IContextFactory.newContext()
Create a new empty context. |
IContext |
IContextFactory.newContext(IContext baseContext)
Creates a new context based on the given context. |
Methods in org.eclipse.webdav with parameters of type IContext | |
---|---|
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. |
IContext |
IContextFactory.newContext(IContext baseContext)
Creates a new context based on the given context. |
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 IContext in org.eclipse.webdav.client |
---|
Methods in org.eclipse.webdav.client that return IContext | |
---|---|
IContext |
ResponseInputStream.getContext()
Returns the http header of the response from the WebDAV server on which this input stream is based. |
IContext |
AbstractResourceHandle.head()
Return the header from a message send to the server. |
IContext |
WebDAVFactory.newContext()
|
protected IContext |
AbstractResourceHandle.newContext()
Answer a new empty context for requests sent to the receivers server. |
IContext |
WebDAVFactory.newContext(IContext baseContext)
|
protected IContext |
DAVClient.newContext(IContext userContext,
ILocator locator)
Returns a new context that is based on the given context. |
Methods in org.eclipse.webdav.client with parameters of type IContext | |
---|---|
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)
|
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)
|
IResponse |
RemoteDAVClient.copy(ILocator source,
ILocator destination,
IContext userContext,
Document document)
|
IResponse |
LocalDAVClient.copy(ILocator source,
ILocator destination,
IContext context,
Document body)
|
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)
|
IResponse |
RemoteDAVClient.move(ILocator source,
ILocator destination,
IContext userContext,
Document document)
|
IResponse |
LocalDAVClient.move(ILocator source,
ILocator destination,
IContext context,
Document body)
|
IContext |
WebDAVFactory.newContext(IContext baseContext)
|
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)
|
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)
|
Uses of IContext in org.eclipse.webdav.http.client |
---|
Fields in org.eclipse.webdav.http.client declared as IContext | |
---|---|
protected IContext |
Message.context
|
Methods in org.eclipse.webdav.http.client that return IContext | |
---|---|
IContext |
Message.getContext()
Returns this message's context. |
IContext |
HttpClient.getContext(URL originServerUrl)
Returns the context for the origin server at the given URL . |
IContext |
HttpClient.getDefaultContext()
Returns the default context. |
Methods in org.eclipse.webdav.http.client with parameters of type IContext | |
---|---|
void |
HttpClient.setContext(URL originServerUrl,
IContext context)
Set the context for the origin server at the given URL . |
void |
HttpClient.setDefaultContext(IContext context)
Sets the default context which is used by all servers that do not already have a context set. |
Constructors in org.eclipse.webdav.http.client with parameters of type IContext | |
---|---|
Message(IContext context,
InputStream is)
Creates a message. |
|
Request(String method,
URL resourceUrl,
IContext context)
Creates a request. |
|
Request(String method,
URL resourceUrl,
IContext context,
InputStream is)
Creates a request. |
|
Request(String method,
URL resourceUrl,
IContext context,
IRequestBodyWriter requestBodyWriter)
Creates a request. |
|
Response(int statusCode,
String statusMessage,
IContext context,
InputStream inputStream)
Creates a response. |
Uses of IContext in org.eclipse.webdav.internal.authentication |
---|
Methods in org.eclipse.webdav.internal.authentication with parameters of type IContext | |
---|---|
boolean |
AuthorizationAuthority.authorize(Request request,
IResponse response,
IContext context,
URL proxyServerUrl,
boolean isProxyAuthorization)
Authorizes the given request by setting its authorization credentials in the given context. |
Uses of IContext in org.eclipse.webdav.internal.kernel |
---|
Classes in org.eclipse.webdav.internal.kernel that implement IContext | |
---|---|
class |
Context
The Context class is essentially a collection of key-value
pairings, with defaults. |
Fields in org.eclipse.webdav.internal.kernel declared as IContext | |
---|---|
protected IContext |
Message.context
|
protected IContext |
Context.defaults
|
protected IContext |
ContextFactory.defaults
|
Methods in org.eclipse.webdav.internal.kernel that return IContext | |
---|---|
IContext |
Message.getContext()
Return the message context. |
IContext |
ContextFactory.newContext()
|
IContext |
ContextFactory.newContext(IContext baseContext)
|
Methods in org.eclipse.webdav.internal.kernel with parameters of type IContext | |
---|---|
IContext |
ContextFactory.newContext(IContext baseContext)
|
void |
ContextFactory.setDefaults(IContext defaultValues)
Set the default values on the factory. |
Constructors in org.eclipse.webdav.internal.kernel with parameters of type IContext | |
---|---|
Context(IContext defaults)
Constructor for the class. |
|
Response(Status status,
IContext context,
Document body)
|
|
Response(Status status,
IContext context,
InputStream body)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |