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

Packages that use Connection
org.abstracthorizon.danube.beanconsole   
org.abstracthorizon.danube.connection   
org.abstracthorizon.danube.freemarker   
org.abstracthorizon.danube.http   
org.abstracthorizon.danube.http.auth   
org.abstracthorizon.danube.http.logging   
org.abstracthorizon.danube.http.spring   
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.support.logging.patternsupport   
org.abstracthorizon.danube.tapestry   
org.abstracthorizon.danube.velocity   
org.abstracthorizon.danube.webflow   
 

Uses of Connection in org.abstracthorizon.danube.beanconsole
 

Methods in org.abstracthorizon.danube.beanconsole with parameters of type Connection
 ModelAndView InvokeController.handleRequest(Connection connection)
          Method that handles a request.
 ModelAndView DisplayController.handleRequest(Connection connection)
          Method that handles a request.
 

Uses of Connection in org.abstracthorizon.danube.connection
 

Subinterfaces of Connection in org.abstracthorizon.danube.connection
 interface StreamConnection
          This interface represents simple (two way) connection
 

Classes in org.abstracthorizon.danube.connection that implement Connection
 class ConnectionWrapper
          Simple Connection wrapper class.
 

Fields in org.abstracthorizon.danube.connection declared as Connection
protected  Connection ConnectionWrapper.connection
          Wrapped connection
 

Methods in org.abstracthorizon.danube.connection with parameters of type Connection
 void ConnectionHandler.handleConnection(Connection connection)
          This method processes a connection - handles requests and processes response.
 

Constructors in org.abstracthorizon.danube.connection with parameters of type Connection
ConnectionWrapper(Connection connection)
          Constructor
 

Uses of Connection in org.abstracthorizon.danube.freemarker
 

Methods in org.abstracthorizon.danube.freemarker with parameters of type Connection
 void FreeMarkerViewAdapter.render(Connection connection, ModelAndView modelAndView)
          This method renders output
 

Uses of Connection in org.abstracthorizon.danube.http
 

Subinterfaces of Connection in org.abstracthorizon.danube.http
 interface HTTPConnection
           This connection represents one HTTP request and response.
 

Classes in org.abstracthorizon.danube.http that implement Connection
 class HTTPConnectionImpl
           This connection represents one HTTP request and response.
 

Methods in org.abstracthorizon.danube.http that return Connection
protected  Connection HTTPServerConnectionHandler.decorateConnection(Connection connection)
           
 

Methods in org.abstracthorizon.danube.http with parameters of type Connection
protected  Connection HTTPServerConnectionHandler.decorateConnection(Connection connection)
           
protected  void HTTPServerConnectionHandler.finishConnection(Connection connnection)
           
 void HTTPMVCConnectionHandler.handleConnection(Connection connection)
          This method just adds no caching headers to response
 void Selector.handleConnection(Connection connection)
          Selects ConnectionHandler checking all Matcher from Selector.components list.
 void BaseReflectionHTTPConnectionHandler.handleConnection(Connection connection)
          Handles connection
 void HTTPContext.handleConnection(Connection connection)
          This method creates sets context path to be same as context path up to here plus this component's path.
protected  boolean HTTPServerConnectionHandler.postProcessing(Connection connection, boolean persistConnection)
           
protected  void HTTPServerConnectionHandler.processConnection(Connection connection)
          Processes connection
 

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

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

Methods in org.abstracthorizon.danube.http.auth with parameters of type Connection
 void JAASAuthenticatedHTTPContext.handleConnection(Connection connection)
          This method creates sets context path to be same as context path up to here plus this component's path.
 void JAASAuthenticator.handleConnection(Connection connection)
          This method creates sets context path to be same as context path up to here plus this component's path.
protected  void JAASAuthenticatedHTTPContext.superHandleConnection(Connection connection)
          Calls super class handle connection method.
 

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

Methods in org.abstracthorizon.danube.http.logging with parameters of type Connection
 void HTTPPatternProcessor.process(Connection connection, Object[] array)
          Adds parameter values to cached index positions
 

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

Methods in org.abstracthorizon.danube.http.spring with parameters of type Connection
 void ApplicationSeparator.handleConnection(Connection connection)
          Passes execution flow to obtained ConnectionHandler
 

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

Methods in org.abstracthorizon.danube.http.util with parameters of type Connection
 void ErrorConnectionHandler.handleConnection(Connection connection)
          Returns simple http with error description
 void EnsureHTTPS.handleConnection(Connection connection)
          This method creates sets context path to be same as context path up to here plus this component's path.
 

Uses of Connection in org.abstracthorizon.danube.mvc
 

Methods in org.abstracthorizon.danube.mvc with parameters of type Connection
 void MVCConnectionHandler.handleConnection(Connection connection)
          This method calls action manager to obtain view and model and then view renderer with that information
 ModelAndView Controller.handleRequest(Connection connection)
          This method processes action request.
 void View.render(Connection connection, ModelAndView modelAndView)
          This metohd renders view on given connection based on supplied view name and model
 

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

Classes in org.abstracthorizon.danube.service.server that implement Connection
 class SocketChannelConnection
          This is socket connection implementation.
 class SocketConnection
          This is socket connection implementation.
 

Fields in org.abstracthorizon.danube.service.server declared as Connection
protected  Connection MultiThreadServerService.ConnectionHandlerThread.serverConnection
          Server connection
protected  Connection ServerSocketChannelService.ConnectionHandlerThread.socketConnection
          Socket connection
 

Methods in org.abstracthorizon.danube.service.server that return Connection
protected  Connection MultiThreadServerSocketService.createSocketConnection(Socket socket)
          Creates new socket connection
protected  Connection ServerSocketChannelService.createSocketConnection(SocketChannel socketChannel)
          Creates new socket connection
protected  Connection MultiThreadServerSocketChannelService.createSocketConnection(SocketChannel socketChannel)
          Creates new socket connection
protected  Connection ServerConnectionHandler.decorateConnection(Connection connection)
          This method can "decorate" connection wrapping it with own.
 Connection MultiThreadServerService.ConnectionHandlerThread.getConnection()
          Returns server connection
 Connection ServerSocketChannelService.ConnectionHandlerThread.getConnection()
          Returns socket connection
 

Methods in org.abstracthorizon.danube.service.server with parameters of type Connection
protected  void ServerConnectionHandler.closeConnection(Connection connection)
          Closes connection.
protected  Connection ServerConnectionHandler.decorateConnection(Connection connection)
          This method can "decorate" connection wrapping it with own.
protected  void ServerConnectionHandler.finishProcessingConnection(Connection connection, boolean closedConnection)
          Finishes connection for this server connection handler.
 void ServerConnectionHandler.handleConnection(Connection connection)
          This template method allows connection to be wrapped and then processes sequential requests/commands while socket is open or an exception occurs.
protected  boolean ServerConnectionHandler.postProcessing(Connection connection)
          Post processing that should determine shell we persist connection (invoke handler again) or leave connection handler.
protected  void ServerConnectionHandler.processConnection(Connection connection)
          Template method for processing of connection.
 

Constructors in org.abstracthorizon.danube.service.server with parameters of type Connection
MultiThreadServerService.ConnectionHandlerThread(Connection serverConnection)
          Constructor
ServerSocketChannelService.ConnectionHandlerThread(Connection socketConnection)
          Constructor
 

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

Classes in org.abstracthorizon.danube.support.logging that implement Connection
static class AccessLogConnectionHandler.DateWrapper
          Simple connection wrapper that adds handling started time in milliseconds
 class LoggingConnection
          Logging connection
 

Methods in org.abstracthorizon.danube.support.logging with parameters of type Connection
protected  String AccessLogConnectionHandler.createLogLine(Connection connection, long start)
          Creates log line.
protected  OutputStream LoggingConnectionHandler.createLogOutputStream(Connection connection, boolean temporary)
          This method creates log output stream.
 void AccessLogConnectionHandler.handleConnection(Connection connection)
          Invokes supplied AccessLogConnectionHandler.connectionHandler measuring time and then writes the log line
 void LoggingConnectionHandler.handleConnection(Connection connection)
          This method wrapps connection to logging connection and passes it further.
 

Constructors in org.abstracthorizon.danube.support.logging with parameters of type Connection
AccessLogConnectionHandler.DateWrapper(Connection connection, long handlingStarted)
          Constructor
LoggingConnection(Connection connection, OutputStream logOutputStream, boolean directional, boolean temporaryLog)
          Constructor.
 

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

Methods in org.abstracthorizon.danube.support.logging.debug with parameters of type Connection
 void DebugConsoleLoggingConnectionHandler.handleConnection(Connection connection)
          This method wrapps connection to logging connection and passes it further.
 

Uses of Connection in org.abstracthorizon.danube.support.logging.patternsupport
 

Methods in org.abstracthorizon.danube.support.logging.patternsupport with parameters of type Connection
 void CurrentDateTimeProcessor.process(Connection connection, Object[] array)
          Adds current time and date in common log format at cached index into the array
 void HandlingTimeProcessor.process(Connection connection, Object[] array)
          Adds parameter values to cached index positions
 void SocketDetailsProcessor.process(Connection connection, Object[] array)
          Adds parameter values to cached index positions
 void PatternProcessor.process(Connection connection, Object[] array)
          Adds parameter values to cached index positions
 

Uses of Connection in org.abstracthorizon.danube.tapestry
 

Methods in org.abstracthorizon.danube.tapestry with parameters of type Connection
 void TapestryConnectionHandler.handleConnection(Connection connection)
          Handles connection by creating DanubeRequest and DanubeResponse and invokes servicer's service method.
 

Uses of Connection in org.abstracthorizon.danube.velocity
 

Methods in org.abstracthorizon.danube.velocity with parameters of type Connection
 void VelocityViewAdapter.render(Connection connection, ModelAndView modelAndView)
          This method renders output
 

Uses of Connection in org.abstracthorizon.danube.webflow
 

Methods in org.abstracthorizon.danube.webflow with parameters of type Connection
 ModelAndView DanubeFlowController.handleRequest(Connection connection)
          Handles request
 



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