public interface ServiceUnitRegistration
| Modifier and Type | Method and Description |
|---|---|
boolean |
isServiceUnitRegistered(String componentName,
String serviceUnitName)
Check to see if a Service Unit with the specified name is registered
to the Component with the specified name.
|
void |
registerServiceUnit(String componentName,
String serviceAssemblyName,
String serviceUnitName,
String serviceUnitFilePath)
Register a Service Unit that has been deployed to a particular BC or
SE.
|
void |
unregisterServiceUnit(String componentName,
String serviceUnitName)
Unregister a Service Unit that has been undeployed from a particular BC
or SE.
|
boolean isServiceUnitRegistered(String componentName, String serviceUnitName) throws JBIException
componentName - The unique Component name.serviceUnitName - The unique Service Unit name.JBIException - if no Component exists with the specified
component name.void registerServiceUnit(String componentName, String serviceAssemblyName, String serviceUnitName, String serviceUnitFilePath) throws JBIException
componentName - The unique name of the BC or SE.serviceAssemblyName - The unique name of the Service Assembly.serviceUnitName - The unique name of the Service Unit.serviceUnitFilePath - The fully-qualified path to the Service Unit
deployment descriptor.JBIException - if no Component exists with the specified
component name or if there is already a Service Unit with the specified
service unit name registered to the component.void unregisterServiceUnit(String componentName, String serviceUnitName) throws JBIException
componentName - The unique name of the BC or SE.serviceUnitName - The unique name of the Service Unit.JBIException - if no Component exists with the specified
component name or if there is no Service Unit with the specified
service unit name registered to the component.Copyright © 2011-2016 OpenESB Community. All Rights Reserved.