org.apache.catalina.connector.warp
Class WarpConnector

org.apache.catalina.connector.warp.WarpConnector
All Implemented Interfaces:
java.lang.Runnable

public class WarpConnector
implements java.lang.Runnable


Field Summary
protected  int uniqueId
          The unique ID of this connector instance.
 
Constructor Summary
WarpConnector()
          Construct a new instance of a WarpConnector.
 
Method Summary
 void addLifecycleListener(org.apache.catalina.LifecycleListener listener)
          Add a LifecycleEvent listener to this Connector.
protected  org.apache.catalina.Context applicationContext(int id)
          Return the application for a given ID.
protected  int applicationId(org.apache.catalina.Context context)
          Return the application ID for a given Context.
 org.apache.catalina.Request createRequest()
          Create (or allocate) and return a Request object suitable for specifying the contents of a Request to the responsible Container.
 org.apache.catalina.Response createResponse()
          Create (or allocate) and return a Response object suitable for receiving the contents of a Response from the responsible Container.
 org.apache.catalina.LifecycleListener[] findLifecycleListeners()
          Get the lifecycle listeners associated with this lifecycle.
 int getAcceptCount()
          Return the accept count for this Connector.
 java.lang.String getAddress()
          Return the IP address to which this Connector will bind to.
 java.lang.String getAppBase()
          Get the applications base directory for hosts created via WARP.
 org.apache.catalina.Container getContainer()
          Return the Container instance which will process all requests received by this Connector.
 int getDebug()
          Return the debug level.
 boolean getEnableLookups()
          Return the "enable DNS lookups" flag.
 org.apache.catalina.net.ServerSocketFactory getFactory()
          Return the ServerSocketFactory used by this Connector to generate ServerSocket instances.
 java.lang.String getInfo()
          Return descriptive information about this Connector.
 int getPort()
          Return the port to which this Connector will bind to.
 int getRedirectPort()
          Return the port number to which a request should be redirected if it comes in on a non-SSL port and is subject to a security constraint with a transport guarantee that requires SSL.
 java.lang.String getScheme()
          Return the scheme that will be assigned to requests received through this connector.
 boolean getSecure()
          Return the secure connection flag that will be assigned to requests received through this connector.
 org.apache.catalina.Service getService()
          Return the Service with which we are associated (if any).
 void initialize()
          Initialize this connector (create ServerSocket here!)
 boolean isStarted()
          Check whether this service was started or not.
 void removeLifecycleListener(org.apache.catalina.LifecycleListener listener)
          Remove a LifecycleEvent listener from this Connector.
 void run()
          Start accepting WARP requests from the network.
 void setAcceptCount(int count)
          Set the accept count for this Connector.
 void setAddress(int port)
          Set the IP address to which this Connector will bind to.
 void setAddress(java.lang.String address)
          Set the IP address to which this Connector will bind to.
 void setAppBase(java.lang.String appBase)
          Set the applications base directory for hosts created via WARP.
 void setContainer(org.apache.catalina.Container container)
          Set the Container instance which will process all requests received by this Connector.
 void setDebug(int debug)
          Set the debug level.
 void setEnableLookups(boolean enableLookups)
          Set the "enable DNS lookups" flag.
 void setFactory(org.apache.catalina.net.ServerSocketFactory factory)
          Set the ServerSocketFactory used by this Connector to generate ServerSocket instances.
 void setInfo(java.lang.String info)
          Set descriptive information about this Connector.
 void setPort(int port)
          Set the port to which this Connector will bind to.
 void setRedirectPort(int redirectPort)
          Set the redirect port number.
 void setScheme(java.lang.String scheme)
          Set the scheme that will be assigned to requests received through this connector.
 void setSecure(boolean secure)
          Set the secure connection flag that will be assigned to requests received through this connector.
 void setService(org.apache.catalina.Service service)
          Set the Service with which we are associated (if any).
 void start()
          Start accepting connections by this Connector.
 void stop()
          Stop accepting connections by this Connector.
 

Field Detail

uniqueId

protected int uniqueId
The unique ID of this connector instance.
Constructor Detail

WarpConnector

public WarpConnector()
Construct a new instance of a WarpConnector.
Method Detail

getContainer

public org.apache.catalina.Container getContainer()
Return the Container instance which will process all requests received by this Connector.

setContainer

public void setContainer(org.apache.catalina.Container container)
Set the Container instance which will process all requests received by this Connector.
Parameters:
container - The new Container to use

getEnableLookups

public boolean getEnableLookups()
Return the "enable DNS lookups" flag.

setEnableLookups

public void setEnableLookups(boolean enableLookups)
Set the "enable DNS lookups" flag.
Parameters:
enableLookups - The new "enable DNS lookups" flag value

getFactory

public org.apache.catalina.net.ServerSocketFactory getFactory()
Return the ServerSocketFactory used by this Connector to generate ServerSocket instances.

setFactory

public void setFactory(org.apache.catalina.net.ServerSocketFactory factory)
Set the ServerSocketFactory used by this Connector to generate ServerSocket instances.
Parameters:
factory - The new server socket factory

getRedirectPort

public int getRedirectPort()
Return the port number to which a request should be redirected if it comes in on a non-SSL port and is subject to a security constraint with a transport guarantee that requires SSL.

setRedirectPort

public void setRedirectPort(int redirectPort)
Set the redirect port number.
Parameters:
redirectPort - The redirect port number (non-SSL to SSL)

getScheme

public java.lang.String getScheme()
Return the scheme that will be assigned to requests received through this connector. Default value is "warp".

setScheme

public void setScheme(java.lang.String scheme)
Set the scheme that will be assigned to requests received through this connector.
Parameters:
scheme - The new scheme

getSecure

public boolean getSecure()
Return the secure connection flag that will be assigned to requests received through this connector. Default value is "false".

setSecure

public void setSecure(boolean secure)
Set the secure connection flag that will be assigned to requests received through this connector.
Parameters:
secure - The new secure connection flag

getService

public org.apache.catalina.Service getService()
Return the Service with which we are associated (if any).

setService

public void setService(org.apache.catalina.Service service)
Set the Service with which we are associated (if any).
Parameters:
service - The service that owns this Engine

getInfo

public java.lang.String getInfo()
Return descriptive information about this Connector.

setInfo

public void setInfo(java.lang.String info)
Set descriptive information about this Connector.

getAddress

public java.lang.String getAddress()
Return the IP address to which this Connector will bind to.

setAddress

public void setAddress(java.lang.String address)
Set the IP address to which this Connector will bind to.
Parameters:
address - The bind IP address

getPort

public int getPort()
Return the port to which this Connector will bind to.

setPort

public void setPort(int port)
Set the port to which this Connector will bind to.
Parameters:
port - The bind port

setAddress

public void setAddress(int port)
Set the IP address to which this Connector will bind to.
Parameters:
address - The bind IP address

getAcceptCount

public int getAcceptCount()
Return the accept count for this Connector.

setAcceptCount

public void setAcceptCount(int count)
Set the accept count for this Connector.
Parameters:
count - The new accept count

getAppBase

public java.lang.String getAppBase()
Get the applications base directory for hosts created via WARP.

setAppBase

public void setAppBase(java.lang.String appBase)
Set the applications base directory for hosts created via WARP.
Parameters:
appBase - The appbase property.

getDebug

public int getDebug()
Return the debug level.

setDebug

public void setDebug(int debug)
Set the debug level.

addLifecycleListener

public void addLifecycleListener(org.apache.catalina.LifecycleListener listener)
Add a LifecycleEvent listener to this Connector.
Parameters:
listener - The listener to add

findLifecycleListeners

public org.apache.catalina.LifecycleListener[] findLifecycleListeners()
Get the lifecycle listeners associated with this lifecycle. If this Lifecycle has no listeners registered, a zero-length array is returned.

removeLifecycleListener

public void removeLifecycleListener(org.apache.catalina.LifecycleListener listener)
Remove a LifecycleEvent listener from this Connector.
Parameters:
listener - The listener to remove

initialize

public void initialize()
                throws org.apache.catalina.LifecycleException
Initialize this connector (create ServerSocket here!)

start

public void start()
           throws org.apache.catalina.LifecycleException
Start accepting connections by this Connector.

stop

public void stop()
          throws org.apache.catalina.LifecycleException
Stop accepting connections by this Connector.

isStarted

public boolean isStarted()
Check whether this service was started or not.

applicationId

protected int applicationId(org.apache.catalina.Context context)
Return the application ID for a given Context.

applicationContext

protected org.apache.catalina.Context applicationContext(int id)
Return the application for a given ID.

createRequest

public org.apache.catalina.Request createRequest()
Create (or allocate) and return a Request object suitable for specifying the contents of a Request to the responsible Container.

createResponse

public org.apache.catalina.Response createResponse()
Create (or allocate) and return a Response object suitable for receiving the contents of a Response from the responsible Container.

run

public void run()
Start accepting WARP requests from the network.
Specified by:
run in interface java.lang.Runnable