public class StandardService extends LifecycleMBeanBase implements Service
Service
interface. The
associated Container is generally an instance of Engine, but this is
not required.Lifecycle.SingleUse
Modifier and Type | Field and Description |
---|---|
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.
|
mserver
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 and Description |
---|
StandardService() |
Modifier and Type | Method and Description |
---|---|
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.
|
getDomain, getObjectName, postDeregister, postRegister, preDeregister, preRegister, register, setDomain, unregister
addLifecycleListener, destroy, findLifecycleListeners, fireLifecycleEvent, getState, getStateName, getThrowOnFailure, init, removeLifecycleListener, setState, setState, setThrowOnFailure, start, stop
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
addLifecycleListener, destroy, findLifecycleListeners, getState, getStateName, init, removeLifecycleListener, start, stop
protected PropertyChangeSupport support
protected Connector[] connectors
protected Container container
public Container getContainer()
Container
that handles requests for all
Connectors
associated with this Service.getContainer
in interface Service
Container
that handles requests for all
Connectors
associated with this 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>
.public String getName()
public void setName(String name)
public Server getServer()
Server
with which we are associated (if any).public void setServer(Server server)
Server
with which we are associated (if any).public 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()
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
- Stringpublic 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
- If the initialisation failsprotected void destroyInternal() throws LifecycleException
LifecycleMBeanBase
destroyInternal
in class LifecycleMBeanBase
LifecycleException
- If the destruction failspublic ClassLoader getParentClassLoader()
getParentClassLoader
in interface Service
Service.getServer()
Server.getParentClassLoader()
. If no server
has been set, return the system class loader.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
Copyright © 2000-2021 Apache Software Foundation. All Rights Reserved.