Uses of Interface
org.abstracthorizon.danube.connection.ConnectionHandler

Packages that use ConnectionHandler
org.abstracthorizon.danube.http   
org.abstracthorizon.danube.http.auth   
org.abstracthorizon.danube.http.logging   
org.abstracthorizon.danube.http.matcher   
org.abstracthorizon.danube.http.spring   
org.abstracthorizon.danube.http.spring.util   
org.abstracthorizon.danube.http.util   
org.abstracthorizon.danube.mvc   
org.abstracthorizon.danube.service.server   
org.abstracthorizon.danube.support.logging   
org.abstracthorizon.danube.support.logging.debug   
org.abstracthorizon.danube.tapestry   
org.abstracthorizon.danube.webdav   
org.abstracthorizon.danube.webdav.fs   
org.abstracthorizon.danube.webdav.java   
org.abstracthorizon.danube.webdav.spring   
 

Uses of ConnectionHandler in org.abstracthorizon.danube.http
 

Classes in org.abstracthorizon.danube.http that implement ConnectionHandler
 class BaseReflectionHTTPConnectionHandler
           This is base http connection handler that splits different HTTP methods (GET, POST, PUT, DELETE, HEAD, TRACE, OPTIONS and possibly others) to methods with names starting with "method"l and ending with HTTP method name.
 class HTTPContext
          This class marks start of "web application" by setting context path.
 class HTTPMVCConnectionHandler
          This class represents MVC controller for HTTP.
 class HTTPServerConnectionHandler
          This class is entry point for HTTP server.
 class Selector
          This class selects appropriate ConnectionHandler based on matching based on the URI from the http connection.
 

Fields in org.abstracthorizon.danube.http declared as ConnectionHandler
protected  ConnectionHandler HTTPServerConnectionHandler.errorHandler
          Error handler
protected  ConnectionHandler Selector.errorResponse
          Error response if uri hasn't been matched
protected  ConnectionHandler BaseReflectionHTTPConnectionHandler.errorResponse
          Error response
protected  ConnectionHandler HTTPConnectionImpl.parent
          Reference to creator of this handler so forward can work from that point
 

Methods in org.abstracthorizon.danube.http that return ConnectionHandler
 ConnectionHandler HTTPServerConnectionHandler.getErrorHandler()
          Returns generic error handler
 ConnectionHandler Selector.getErrorResponse()
          Returns error response
 ConnectionHandler BaseReflectionHTTPConnectionHandler.getErrorResponse()
          Returns error response connection handler
 

Methods in org.abstracthorizon.danube.http with parameters of type ConnectionHandler
 void HTTPServerConnectionHandler.setErrorHandler(ConnectionHandler errorHandler)
          Sets generic error handler
 void Selector.setErrorResponse(ConnectionHandler errorResponse)
          Sets error response
 void BaseReflectionHTTPConnectionHandler.setErrorResponse(ConnectionHandler errorResponse)
          Sets error response connection handler
 

Constructors in org.abstracthorizon.danube.http with parameters of type ConnectionHandler
HTTPConnectionImpl(Connection connection, ConnectionHandler parent, InputStream inputStream, OutputStream outputStream, int defaultBufferSize)
          Constructor.
HTTPConnectionImpl(Connection connection, ConnectionHandler parent, int defaultBufferSize)
          Constructor.
 

Uses of ConnectionHandler in org.abstracthorizon.danube.http.auth
 

Classes in org.abstracthorizon.danube.http.auth that implement ConnectionHandler
 class JAASAuthenticatedHTTPContext
          This class marks start of "web application" by setting context path.
 class JAASAuthenticator
           This wrapper forces JAAS authentication to happen at client side: if "Authorization" header is missing it would return 401 code requesting one.
 

Fields in org.abstracthorizon.danube.http.auth declared as ConnectionHandler
protected  ConnectionHandler JAASAuthenticator.handler
          Wrapped handler
 

Methods in org.abstracthorizon.danube.http.auth that return ConnectionHandler
 ConnectionHandler JAASAuthenticator.getHandler()
          Returns wrapped handler
 

Methods in org.abstracthorizon.danube.http.auth with parameters of type ConnectionHandler
 void JAASAuthenticator.setHandler(ConnectionHandler handler)
          Sets wrapped handler
 

Constructors in org.abstracthorizon.danube.http.auth with parameters of type ConnectionHandler
JAASAuthenticator(ConnectionHandler handler)
          Constructor
 

Uses of ConnectionHandler in org.abstracthorizon.danube.http.logging
 

Classes in org.abstracthorizon.danube.http.logging that implement ConnectionHandler
 class HTTPAccessLogConnectionHandler
           Utility class that adds new pattern codes to existing in AccessLogConnectionHandler
 

Uses of ConnectionHandler in org.abstracthorizon.danube.http.matcher
 

Fields in org.abstracthorizon.danube.http.matcher declared as ConnectionHandler
protected  ConnectionHandler AbstractMatcher.connectionHandler
          Param connection handler
 

Methods in org.abstracthorizon.danube.http.matcher that return ConnectionHandler
 ConnectionHandler AbstractMatcher.getConnectionHandler()
          Returns connection handler
 ConnectionHandler Matcher.getConnectionHandler()
          Returns stored ConnectionHandler
 

Methods in org.abstracthorizon.danube.http.matcher with parameters of type ConnectionHandler
 void AbstractMatcher.setConnectionHandler(ConnectionHandler connectionHandler)
          Sets connection handler
 

Constructors in org.abstracthorizon.danube.http.matcher with parameters of type ConnectionHandler
AbstractMatcher(ConnectionHandler connectionHandler)
          Constructor
AbstractMatcher(ConnectionHandler connectionHandler, boolean stopOnMatch)
          Constructor
Prefix(ConnectionHandler connectionHandler, boolean stopOnMatch, String prefix)
          Constructor
Prefix(ConnectionHandler connectionHandler, String prefix)
          Constrcutor
 

Uses of ConnectionHandler in org.abstracthorizon.danube.http.spring
 

Classes in org.abstracthorizon.danube.http.spring that implement ConnectionHandler
 class ApplicationSeparator
          This class is attended for categorisation of top level components.
 

Fields in org.abstracthorizon.danube.http.spring declared as ConnectionHandler
protected  ConnectionHandler ApplicationSeparator.applicationsConnectionHandler
          Cached application's connection handler
 

Uses of ConnectionHandler in org.abstracthorizon.danube.http.spring.util
 

Classes in org.abstracthorizon.danube.http.spring.util that implement ConnectionHandler
 class FileConnectionHandler
          Connection handler that handles static files (and directories)
 

Uses of ConnectionHandler in org.abstracthorizon.danube.http.util
 

Classes in org.abstracthorizon.danube.http.util that implement ConnectionHandler
 class EnsureHTTPS
          This wrapper forces JAAS authentication to happen at client side: if "Authorization" header is missing it would return 401 code requesting one.
 class ErrorConnectionHandler
          Default error connection handler.
 class ReadOnlyFileConnectionHandler
          Connection handler that handles static files (and directories)
 class ReadWriteFileConnectionHandler
          Connection handler that handles static files (and directories)
 

Fields in org.abstracthorizon.danube.http.util declared as ConnectionHandler
protected  ConnectionHandler EnsureHTTPS.handler
          Wrapped handler
 

Methods in org.abstracthorizon.danube.http.util that return ConnectionHandler
 ConnectionHandler EnsureHTTPS.getHandler()
          Returns wrapped handler
 

Methods in org.abstracthorizon.danube.http.util with parameters of type ConnectionHandler
 void EnsureHTTPS.setHandler(ConnectionHandler handler)
          Sets wrapped handler
 

Constructors in org.abstracthorizon.danube.http.util with parameters of type ConnectionHandler
EnsureHTTPS(ConnectionHandler handler)
          Constructor
 

Uses of ConnectionHandler in org.abstracthorizon.danube.mvc
 

Classes in org.abstracthorizon.danube.mvc that implement ConnectionHandler
 class MVCConnectionHandler
          Tihs class is driver of MVC.
 

Uses of ConnectionHandler in org.abstracthorizon.danube.service.server
 

Classes in org.abstracthorizon.danube.service.server that implement ConnectionHandler
 class ServerConnectionHandler
          This class is entry point for typical server that handles request sequentially.
 

Fields in org.abstracthorizon.danube.service.server declared as ConnectionHandler
protected  ConnectionHandler ServerSocketChannelService.connectionHandler
          Connection handler new connection to be handed with
protected  ConnectionHandler ServerService.connectionHandler
          Connection handler new connection to be handed to
protected  ConnectionHandler ServerConnectionHandler.connectionHandler
          Connection Handler
 

Methods in org.abstracthorizon.danube.service.server that return ConnectionHandler
 ConnectionHandler ServerSocketChannelService.getConnectionHandler()
          Returns connection handler connections are handed to.
 ConnectionHandler ServerService.getConnectionHandler()
          Returns connection handler connections are handed to.
 ConnectionHandler ServerConnectionHandler.getConnectionHandler()
          Returns connection handler
 

Methods in org.abstracthorizon.danube.service.server with parameters of type ConnectionHandler
 void ServerSocketChannelService.setConnectionHandler(ConnectionHandler connectionHandler)
          Sets connection handler
 void ServerService.setConnectionHandler(ConnectionHandler connectionHandler)
          Sets connection handler
 void ServerConnectionHandler.setConnectionHandler(ConnectionHandler connectionHandler)
          Sets connection handler
 

Uses of ConnectionHandler in org.abstracthorizon.danube.support.logging
 

Classes in org.abstracthorizon.danube.support.logging that implement ConnectionHandler
 class AccessLogConnectionHandler
           This handler implements simple access log.
 class LoggingConnectionHandler
          Connection handler that logs connection to a file.
 

Methods in org.abstracthorizon.danube.support.logging that return ConnectionHandler
 ConnectionHandler AccessLogConnectionHandler.getConnectionHandler()
          Returns connection handler
 ConnectionHandler LoggingConnectionHandler.getConnectionHandler()
          Returns connection handler
 

Methods in org.abstracthorizon.danube.support.logging with parameters of type ConnectionHandler
 void AccessLogConnectionHandler.setConnectionHandler(ConnectionHandler connectionHandler)
          Sets connection handler
 void LoggingConnectionHandler.setConnectionHandler(ConnectionHandler connectionHandler)
          Sets connection handler
 

Uses of ConnectionHandler in org.abstracthorizon.danube.support.logging.debug
 

Classes in org.abstracthorizon.danube.support.logging.debug that implement ConnectionHandler
 class DebugConsoleLoggingConnectionHandler
          Connection handler that logs connection to a file.
 

Methods in org.abstracthorizon.danube.support.logging.debug that return ConnectionHandler
 ConnectionHandler DebugConsoleLoggingConnectionHandler.getConnectionHandler()
          Returns connection handler
 

Methods in org.abstracthorizon.danube.support.logging.debug with parameters of type ConnectionHandler
 void DebugConsoleLoggingConnectionHandler.setConnectionHandler(ConnectionHandler connectionHandler)
          Sets connection handler
 

Uses of ConnectionHandler in org.abstracthorizon.danube.tapestry
 

Classes in org.abstracthorizon.danube.tapestry that implement ConnectionHandler
 class TapestryConnectionHandler
          Tapestry connection handler.
 

Uses of ConnectionHandler in org.abstracthorizon.danube.webdav
 

Classes in org.abstracthorizon.danube.webdav that implement ConnectionHandler
 class BaseWebDAVResourceConnectionHandler
          Base WebDAV resource connection handler.
 

Uses of ConnectionHandler in org.abstracthorizon.danube.webdav.fs
 

Classes in org.abstracthorizon.danube.webdav.fs that implement ConnectionHandler
 class FileSystemWebDAVConnectionHandler
           
 

Uses of ConnectionHandler in org.abstracthorizon.danube.webdav.java
 

Classes in org.abstracthorizon.danube.webdav.java that implement ConnectionHandler
 class JavaWebDAVHandler
          This is convenient extension of BaseWebDAVResourceConnectionHandler that sets java resource adapter.
 

Uses of ConnectionHandler in org.abstracthorizon.danube.webdav.spring
 

Classes in org.abstracthorizon.danube.webdav.spring that implement ConnectionHandler
 class SpringResourceWebDAVConnectionHandler
          This is connection handler for Spring framework resources
 



Copyright © 2005-2009 Abstract Horizon. All Rights Reserved.