|
Apache Tomcat 7.0.28 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.catalina.util.LifecycleBase org.apache.catalina.util.LifecycleMBeanBase org.apache.catalina.core.StandardService
public class StandardService
Standard implementation of the Service
interface. The
associated Container is generally an instance of Engine, but this is
not required.
Field Summary | |
---|---|
protected Connector[] |
connectors
The set of Connectors associated with this Service. |
protected Container |
container
The Container associated with this Service. |
protected ArrayList<Executor> |
executors
|
protected PropertyChangeSupport |
support
The property change support for this component. |
Fields inherited from class org.apache.catalina.util.LifecycleMBeanBase |
---|
mserver |
Fields inherited from interface org.apache.catalina.Lifecycle |
---|
AFTER_DESTROY_EVENT, AFTER_INIT_EVENT, AFTER_START_EVENT, AFTER_STOP_EVENT, BEFORE_DESTROY_EVENT, BEFORE_INIT_EVENT, BEFORE_START_EVENT, BEFORE_STOP_EVENT, CONFIGURE_START_EVENT, CONFIGURE_STOP_EVENT, PERIODIC_EVENT, START_EVENT, STOP_EVENT |
Constructor Summary | |
---|---|
StandardService()
|
Method Summary | |
---|---|
void |
addConnector(Connector connector)
Add a new Connector to the set of defined Connectors, and associate it with this Service's Container. |
void |
addExecutor(Executor ex)
Adds a named executor to the service |
void |
addPropertyChangeListener(PropertyChangeListener listener)
Add a property change listener to this component. |
protected void |
destroyInternal()
Sub-classes wishing to perform additional clean-up should override this method, ensuring that super.destroyInternal() is the last call in the overriding method. |
Connector[] |
findConnectors()
Find and return the set of Connectors associated with this Service. |
Executor[] |
findExecutors()
Retrieves all executors |
ObjectName[] |
getConnectorNames()
|
Container |
getContainer()
Return the Container that handles requests for all
Connectors associated with this Service. |
protected String |
getDomainInternal()
Method implemented by sub-classes to identify the domain in which MBeans should be registered. |
Executor |
getExecutor(String executorName)
Retrieves executor by name, null if not found |
String |
getInfo()
Return descriptive information about this Service implementation and the corresponding version number, in the format <description>/<version> . |
String |
getName()
Return the name of this Service. |
String |
getObjectNameKeyProperties()
Allow sub-classes to specify the key properties component of the ObjectName that will be used to register this component. |
ClassLoader |
getParentClassLoader()
Return the parent class loader for this component. |
Server |
getServer()
Return the Server with which we are associated (if any). |
protected void |
initInternal()
Invoke a pre-startup initialization. |
void |
removeConnector(Connector connector)
Remove the specified Connector from the set associated from this Service. |
void |
removeExecutor(Executor ex)
Removes an executor from the service |
void |
removePropertyChangeListener(PropertyChangeListener listener)
Remove a property change listener from this component. |
void |
setContainer(Container container)
Set the Container that handles requests for all
Connectors associated with this Service. |
void |
setName(String name)
Set the name of this Service. |
void |
setParentClassLoader(ClassLoader parent)
Set the parent class loader for this server. |
void |
setServer(Server server)
Set the Server with which we are associated (if any). |
protected void |
startInternal()
Start nested components ( Executor s, Connector s and
Container s) and implement the requirements of
LifecycleBase.startInternal() . |
protected void |
stopInternal()
Stop nested components ( Executor s, Connector s and
Container s) and implement the requirements of
LifecycleBase.stopInternal() . |
String |
toString()
Return a String representation of this component. |
Methods inherited from class org.apache.catalina.util.LifecycleMBeanBase |
---|
getDomain, getObjectName, postDeregister, postRegister, preDeregister, preRegister, register, setDomain, unregister |
Methods inherited from class org.apache.catalina.util.LifecycleBase |
---|
addLifecycleListener, destroy, findLifecycleListeners, fireLifecycleEvent, getState, getStateName, init, removeLifecycleListener, setState, setState, start, stop |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface org.apache.catalina.Lifecycle |
---|
addLifecycleListener, destroy, findLifecycleListeners, getState, getStateName, init, removeLifecycleListener, start, stop |
Field Detail |
---|
protected PropertyChangeSupport support
protected Connector[] connectors
protected ArrayList<Executor> executors
protected Container container
Constructor Detail |
---|
public StandardService()
Method Detail |
---|
public Container getContainer()
Container
that handles requests for all
Connectors
associated with this Service.
getContainer
in interface Service
public void setContainer(Container container)
Container
that handles requests for all
Connectors
associated with this Service.
setContainer
in interface Service
container
- The new Containerpublic String getInfo()
<description>/<version>
.
getInfo
in interface Service
public String getName()
getName
in interface Service
public void setName(String name)
setName
in interface Service
name
- The new service namepublic Server getServer()
Server
with which we are associated (if any).
getServer
in interface Service
public void setServer(Server server)
Server
with which we are associated (if any).
setServer
in interface Service
server
- The server that owns this Servicepublic void addConnector(Connector connector)
addConnector
in interface Service
connector
- The Connector to be addedpublic ObjectName[] getConnectorNames()
public void addPropertyChangeListener(PropertyChangeListener listener)
listener
- The listener to addpublic Connector[] findConnectors()
findConnectors
in interface Service
public void removeConnector(Connector connector)
removeConnector
in interface Service
connector
- The Connector to be removedpublic void removePropertyChangeListener(PropertyChangeListener listener)
listener
- The listener to removepublic String toString()
toString
in class Object
public void addExecutor(Executor ex)
addExecutor
in interface Service
ex
- Executorpublic Executor[] findExecutors()
findExecutors
in interface Service
public Executor getExecutor(String executorName)
getExecutor
in interface Service
executorName
- String
public void removeExecutor(Executor ex)
removeExecutor
in interface Service
ex
- Executorprotected void startInternal() throws LifecycleException
Executor
s, Connector
s and
Container
s) and implement the requirements of
LifecycleBase.startInternal()
.
startInternal
in class LifecycleBase
LifecycleException
- if this component detects a fatal error
that prevents this component from being usedprotected void stopInternal() throws LifecycleException
Executor
s, Connector
s and
Container
s) and implement the requirements of
LifecycleBase.stopInternal()
.
stopInternal
in class LifecycleBase
LifecycleException
- if this component detects a fatal error
that needs to be reportedprotected void initInternal() throws LifecycleException
initInternal
in class LifecycleMBeanBase
LifecycleException
protected void destroyInternal() throws LifecycleException
LifecycleMBeanBase
destroyInternal
in class LifecycleMBeanBase
LifecycleException
public ClassLoader getParentClassLoader()
getParentClassLoader
in interface Service
public void setParentClassLoader(ClassLoader parent)
setParentClassLoader
in interface Service
parent
- The new parent class loaderprotected String getDomainInternal()
LifecycleMBeanBase
getDomainInternal
in class LifecycleMBeanBase
public final String getObjectNameKeyProperties()
LifecycleMBeanBase
ObjectName
that will be used to register this component.
getObjectNameKeyProperties
in class LifecycleMBeanBase
ObjectName
|
Apache Tomcat 7.0.28 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |