| java.lang.Object com.sun.esb.management.base.services.AbstractServiceImpl
All known Subclasses: com.sun.esb.management.impl.administration.AdministrationServiceImpl, com.sun.esb.management.impl.runtime.RuntimeManagementServiceImpl, com.sun.esb.management.impl.performance.PerformanceMeasurementServiceImpl, com.sun.esb.management.base.services.BaseServiceImpl,
AbstractServiceImpl | abstract public class AbstractServiceImpl implements Serializable(Code) | | author: graj |
CANNED_RESPONSE | protected static String CANNED_RESPONSE(Code) | | |
isRemoteConnection | protected boolean isRemoteConnection(Code) | | is this a local or remote connection
|
serialVersionUID | final static long serialVersionUID(Code) | | |
AbstractServiceImpl | public AbstractServiceImpl()(Code) | | Constructor - Constructs a new instance of AbstractServiceImpl
|
AbstractServiceImpl | public AbstractServiceImpl(MBeanServerConnection serverConnection)(Code) | | Constructor - Constructs a new instance of AbstractServiceImpl
Parameters: serverConnection - |
AbstractServiceImpl | public AbstractServiceImpl(MBeanServerConnection serverConnection, boolean isRemoteConnection)(Code) | | Constructor - Constructs a new instance of AbstractServiceImpl
Parameters: serverConnection - Parameters: isRemoteConnection - |
getI18NBundle | protected I18NBundle getI18NBundle()(Code) | | gives the I18N bundle
I18NBundle object |
invokeMBeanOperation | protected Object invokeMBeanOperation(ObjectName objectName, String operationName, Object[] params, String[] signature) throws ManagementRemoteException(Code) | | open connection, invokes the operation on mbean and closes connection.
This should not be used if the connection is already opened or not to be
close after the invoke operation.
result object Parameters: objectName - object name Parameters: operationName - operation name Parameters: params - parameters Parameters: signature - signature of the parameters throws: JBIRemoteException - on error |
isRegistered | protected boolean isRegistered(ObjectName objectName)(Code) | | Test whether an mbean is registered.
Parameters: objectName - true when the mbean is registered, false otherwise throws: JBIRemoteException - |
isRemoteConnection | protected boolean isRemoteConnection()(Code) | | is this a local or remote connection
true if remote, false if local |
listTargetNames | protected Map<String /*targetName*/, String[] listTargetNames() throws ManagementRemoteException(Code) | | Returns a map of target names to an array of target instance names.
In the case cluster targets, the key contains the cluster target name,
and the the value contains an array of the "target instance" names.
If it is not a cluster target, the key contains the targetName, and
the value is null.
map of target names to array of target instance names throws: ManagementRemoteException - |
queryNames | protected Set<ObjectName> queryNames(String pattern, QueryExp query) throws ManagementRemoteException(Code) | | get a list of object names matching the pattern/query
Parameters: pattern - pattern string Parameters: query - query expression a set of object names matching the pattern and query |
|
|