Package com.opencloud.rhino.management
Class BindingResult
- java.lang.Object
-
- com.opencloud.rhino.management.BindingResult
-
- All Implemented Interfaces:
Serializable
public class BindingResult extends Object implements Serializable
Result object returned from a binding operation.
- Since:
- Rhino 2.4.0
- See Also:
ServiceManagementMBean.addBinding(ServiceID, BindingDescriptorID, Map, boolean)
,ServiceManagementMBean.addBindings(ServiceID, BindingDescriptorID[], Map, boolean)
,ServiceManagementMBean.removeBinding(ServiceID, BindingDescriptorID, boolean)
,ServiceManagementMBean.removeBindings(ServiceID, BindingDescriptorID[], boolean)
, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BindingResult(ComponentID[] componentsCreated, ComponentID[] componentsRemoved)
Create a new binding operation result.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ComponentID[]
getComponentsCreated()
Get the set of components created by the binding operation.ComponentID[]
getComponentsRemoved()
Get the set of components removed by the binding operation.
-
-
-
Constructor Detail
-
BindingResult
public BindingResult(ComponentID[] componentsCreated, ComponentID[] componentsRemoved)
Create a new binding operation result.
- Parameters:
componentsCreated
- set of components created by the binding operation.componentsRemoved
- set of components removed by the binding operation.
-
-
Method Detail
-
getComponentsCreated
public ComponentID[] getComponentsCreated()
Get the set of components created by the binding operation.
- Returns:
- the created components.
-
getComponentsRemoved
public ComponentID[] getComponentsRemoved()
Get the set of components removed by the binding operation.
- Returns:
- the removed components.
-
-