|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of HTTPConnection in org.abstracthorizon.danube.beanconsole |
---|
Methods in org.abstracthorizon.danube.beanconsole with parameters of type HTTPConnection | |
---|---|
protected void |
InvokeController.execute(Map<String,Object> model,
Object current,
HTTPConnection httpConnection,
String methodName)
Invokes the method |
protected void |
DisplayController.updateProperties(Object current,
HTTPConnection httpConnection,
Map<String,Object> model)
Sets properties of the selected bean. |
Uses of HTTPConnection in org.abstracthorizon.danube.http |
---|
Classes in org.abstracthorizon.danube.http that implement HTTPConnection | |
---|---|
class |
HTTPConnectionImpl
This connection represents one HTTP request and response. |
Methods in org.abstracthorizon.danube.http with parameters of type HTTPConnection | |
---|---|
protected void |
BaseReflectionHTTPConnectionHandler.invokeMethod(HTTPConnection httpConnection,
String methodName)
Invokes object's method |
void |
BaseReflectionHTTPConnectionHandler.methodHEAD(HTTPConnection httpConnection)
Handles OPTIONS HTTP method |
void |
BaseReflectionHTTPConnectionHandler.methodOPTIONS(HTTPConnection httpConnection)
Handles OPTIONS HTTP method |
void |
BaseReflectionHTTPConnectionHandler.methodTRACE(HTTPConnection httpConnection)
Handles OPTIONS HTTP method |
void |
BaseReflectionHTTPConnectionHandler.returnError(HTTPConnection httpConnection,
Status status)
|
void |
BaseReflectionHTTPConnectionHandler.returnSimpleContent(HTTPConnection httpConnection,
Status status,
String contentType,
String content)
|
Uses of HTTPConnection in org.abstracthorizon.danube.http.cookie |
---|
Methods in org.abstracthorizon.danube.http.cookie with parameters of type HTTPConnection | |
---|---|
static void |
CookieUtilities.addResponseCookies(HTTPConnection connection,
Collection<Cookie> cookies)
Adds response cookie |
static Map<String,Cookie> |
CookieUtilities.getRequestCookies(HTTPConnection connection)
Obtains request cookies as a map |
static Map<String,Cookie> |
CookieUtilities.getResponseCookies(HTTPConnection connection)
Returns all response cookies as a map |
Uses of HTTPConnection in org.abstracthorizon.danube.http.matcher |
---|
Methods in org.abstracthorizon.danube.http.matcher with parameters of type HTTPConnection | |
---|---|
void |
Prefix.adjustForInvocation(HTTPConnection httpConnection)
Adjusts connection for nested connection handler to be invoked |
void |
WelcomeFile.adjustForInvocation(HTTPConnection httpConnection)
Adjusts connection for nested connection handler to be invoked |
void |
Pattern.adjustForInvocation(HTTPConnection httpConnection)
Adjusts connection for nested connection handler to be invoked |
void |
Matcher.adjustForInvocation(HTTPConnection connection)
Adjusts connection for nested connection handler to be invoked |
boolean |
Prefix.matches(HTTPConnection httpConnection)
This matcher checks prefix of requested path. |
boolean |
WelcomeFile.matches(HTTPConnection httpConnection)
This matcher checks prefix of requested path. |
boolean |
Pattern.matches(HTTPConnection httpConnection)
Uses precompiled pattern to match URI from http conneciton |
boolean |
Matcher.matches(HTTPConnection connection)
Returns true if uri from connection is matched |
Uses of HTTPConnection in org.abstracthorizon.danube.http.session |
---|
Methods in org.abstracthorizon.danube.http.session with parameters of type HTTPConnection | |
---|---|
Object |
HTTPSessionManager.findSession(HTTPConnection connection,
boolean create)
Finds existing session or creates new one if there is no existing session and create parameter is set to true . |
Object |
SimpleCookieSessionManager.findSession(HTTPConnection connection,
boolean create)
Finds a session for supplied connection |
Object |
SimpleSessionManager.findSession(HTTPConnection connection,
boolean create)
Finds a session for supplied connection |
void |
HTTPSessionManager.removeSession(HTTPConnection connection)
Removes session from connection |
void |
SimpleCookieSessionManager.removeSession(HTTPConnection connection)
Removes session from connection |
void |
SimpleSessionManager.removeSession(HTTPConnection connection)
Removes session from connection |
String |
HTTPSessionManager.rewriteURL(HTTPConnection connection,
String url)
This method should take care session ids kept in the url. |
String |
SimpleCookieSessionManager.rewriteURL(HTTPConnection connection,
String url)
Rewrites URL for given connection |
String |
SimpleSessionManager.rewriteURL(HTTPConnection connection,
String url)
Rewrites URL for given connection |
Uses of HTTPConnection in org.abstracthorizon.danube.http.util |
---|
Methods in org.abstracthorizon.danube.http.util with parameters of type HTTPConnection | |
---|---|
protected File |
ReadOnlyFileConnectionHandler.getFileHandle(HTTPConnection httpConnection)
Obtains real file system's file from the given connection |
protected void |
ReadOnlyFileConnectionHandler.handleDirectory(File dir,
HTTPConnection httpConnection)
Handles request of directory. |
protected void |
ReadOnlyFileConnectionHandler.handleFile(File file,
HTTPConnection httpConnection)
Handles file request. |
void |
ReadWriteFileConnectionHandler.methodDELETE(HTTPConnection httpConnection)
|
void |
ReadOnlyFileConnectionHandler.methodGET(HTTPConnection httpConnection)
This method retruns list of files from give directory or returns a file, using FileTypeMap to convert file extension to mime type |
void |
ReadOnlyFileConnectionHandler.methodHEAD(HTTPConnection httpConnection)
This method retruns headers for for GET method but no body |
void |
ReadWriteFileConnectionHandler.methodPUT(HTTPConnection httpConnection)
This method retruns list of files from give directory or returns a file, using FileTypeMap to convert file extension to mime type |
protected void |
ReadOnlyFileConnectionHandler.updateHeadersForFile(HTTPConnection httpConnection,
File resource)
Updates http headers for given resource |
protected void |
ReadWriteFileConnectionHandler.uploadFile(File file,
HTTPConnection httpConnection)
Uploads the file |
Uses of HTTPConnection in org.abstracthorizon.danube.tapestry |
---|
Fields in org.abstracthorizon.danube.tapestry declared as HTTPConnection | |
---|---|
protected HTTPConnection |
DanubeResponse.connection
Reference to connection |
protected HTTPConnection |
DanubeRequest.connection
Reference connection |
Constructors in org.abstracthorizon.danube.tapestry with parameters of type HTTPConnection | |
---|---|
DanubeRequest(HTTPConnection connection,
HTTPSessionManager sessionManager)
Constructor |
|
DanubeResponse(HTTPConnection connection)
Constructor |
Uses of HTTPConnection in org.abstracthorizon.danube.velocity |
---|
Methods in org.abstracthorizon.danube.velocity with parameters of type HTTPConnection | |
---|---|
protected void |
VelocityViewAdapter.mergeTemplate(org.apache.velocity.Template template,
org.apache.velocity.context.Context context,
HTTPConnection connection)
Generates output from given template |
Uses of HTTPConnection in org.abstracthorizon.danube.webdav |
---|
Methods in org.abstracthorizon.danube.webdav with parameters of type HTTPConnection | |
---|---|
protected Ranges |
BaseWebDAVResourceConnectionHandler.collectRange(HTTPConnection connection)
Collects range from the "Range" header. |
protected Timeout[] |
BaseWebDAVResourceConnectionHandler.collectTimeouts(HTTPConnection connection)
Collects timeouts from the "Timeout" header |
protected Object |
BaseWebDAVResourceConnectionHandler.findResource(HTTPConnection httpConnection)
Returns a resource. |
protected boolean |
BaseWebDAVResourceConnectionHandler.isLockedRecursive(LockingMechanism lockingMechanism,
IF lockDetails,
MultiStatus multiStatus,
HTTPConnection httpConnection,
Object resource,
String path)
Checks recursively if resource is locked and all of it's children. |
void |
BaseWebDAVResourceConnectionHandler.methodCOPY(HTTPConnection httpConnection)
Implements copy method |
void |
BaseWebDAVResourceConnectionHandler.methodDELETE(HTTPConnection httpConnection)
Following is hard to be maintained and is not followed stictly in this implementation: |
void |
BaseWebDAVResourceConnectionHandler.methodGET(HTTPConnection httpConnection)
GET method implementation |
void |
BaseWebDAVResourceConnectionHandler.methodHEAD(HTTPConnection httpConnection)
Implementation of the HEAD method. |
void |
BaseWebDAVResourceConnectionHandler.methodLOCK(HTTPConnection httpConnection)
Implements LOCK method. |
void |
BaseWebDAVResourceConnectionHandler.methodMKCOL(HTTPConnection httpConnection)
Implements MKCOL method (making collection). |
void |
BaseWebDAVResourceConnectionHandler.methodMOVE(HTTPConnection httpConnection)
Moves resource |
void |
BaseWebDAVResourceConnectionHandler.methodOPTIONS(HTTPConnection httpConnection)
This method adds DAV: 1,2 header. |
void |
BaseWebDAVResourceConnectionHandler.methodPROPFIND(HTTPConnection httpConnection)
Implements PROPFIND method |
void |
BaseWebDAVResourceConnectionHandler.methodPROPPATCH(HTTPConnection httpConnection)
Implements PROPPATH method |
void |
BaseWebDAVResourceConnectionHandler.methodPUT(HTTPConnection httpConnection)
Implements PUT method |
void |
BaseWebDAVResourceConnectionHandler.methodUNLOCK(HTTPConnection httpConnection)
Implements UNLOCK method. |
protected void |
BaseWebDAVResourceConnectionHandler.transmitResource(HTTPConnection httpConnection,
Object resource,
Adaptable output,
Ranges ranges)
Transmits resource. |
Uses of HTTPConnection in org.abstracthorizon.danube.webdav.fs |
---|
Methods in org.abstracthorizon.danube.webdav.fs with parameters of type HTTPConnection | |
---|---|
void |
FileSystemWebDAVConnectionHandler.methodPOST(HTTPConnection connection)
|
Uses of HTTPConnection in org.abstracthorizon.danube.webdav.java |
---|
Methods in org.abstracthorizon.danube.webdav.java with parameters of type HTTPConnection | |
---|---|
void |
JavaWebDAVHandler.methodPOST(HTTPConnection connection)
Redirects POST HTTP method to GET |
Uses of HTTPConnection in org.abstracthorizon.danube.webdav.spring |
---|
Methods in org.abstracthorizon.danube.webdav.spring with parameters of type HTTPConnection | |
---|---|
void |
SpringResourceWebDAVConnectionHandler.methodPOST(HTTPConnection connection)
POST method is the same as GET method |
Uses of HTTPConnection in org.abstracthorizon.danube.webdav.util |
---|
Methods in org.abstracthorizon.danube.webdav.util with parameters of type HTTPConnection | |
---|---|
static int |
Depth.collectDepth(HTTPConnection connection)
Parses the header (if present) and returns depth object |
boolean |
IF.parse(HTTPConnection httpConnection,
ResourceAdapter adapter,
Object mainResource,
Object parentResource)
Parses "if" header and checks if values correspond to given resource. |
boolean |
IF.parse(HTTPConnection httpConnection,
ResourceAdapter adapter,
Object mainResource,
Object parentResource,
char[] buf)
Parses "if" header and checks if values correspond to given resource. |
void |
CollectionHTMLRenderer.render(HTTPConnection httpConnection,
ResourceAdapter adapter,
Object collection)
Render a resource |
void |
SimpleHTMLCollectionRenderer.render(HTTPConnection httpConnection,
ResourceAdapter adapter,
Object dir)
Renders the html |
static Object |
URIUtils.uriToResource(HTTPConnection httpConnection,
ResourceAdapter adapter,
String uriString)
Returns resource from the given URI |
Uses of HTTPConnection in org.abstracthorizon.danube.webdav.xml.dav.response |
---|
Fields in org.abstracthorizon.danube.webdav.xml.dav.response declared as HTTPConnection | |
---|---|
protected HTTPConnection |
MultiStatus.httpConnection
HTTP connection status is going to render response to |
Methods in org.abstracthorizon.danube.webdav.xml.dav.response that return HTTPConnection | |
---|---|
HTTPConnection |
MultiStatus.getHTTPConnection()
Returns http connection |
Constructors in org.abstracthorizon.danube.webdav.xml.dav.response with parameters of type HTTPConnection | |
---|---|
MultiStatus(NamespacesProvider provider,
HTTPConnection connection)
Constructor |
Uses of HTTPConnection in org.abstracthorizon.danube.webflow |
---|
Fields in org.abstracthorizon.danube.webflow declared as HTTPConnection | |
---|---|
protected HTTPConnection |
DanubeExternalContext.connection
Connection reference |
Constructors in org.abstracthorizon.danube.webflow with parameters of type HTTPConnection | |
---|---|
DanubeExternalContext(DanubeFlowController controller,
HTTPConnection connection)
Constructor |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |