| | |
| | | |
| | | |
| | | /** |
| | | * Management connection context. |
| | | * Client management connection context. |
| | | */ |
| | | public abstract class ManagementContext { |
| | | |
| | |
| | | |
| | | |
| | | /** |
| | | * Get the root configuration managed object associated with this |
| | | * Gets the root configuration client associated with this |
| | | * management context. |
| | | * |
| | | * @return Returns the root configuration managed object associated |
| | | * with this management context. |
| | | */ |
| | | public abstract ManagedObject<RootCfgClient> |
| | | getRootConfigurationManagedObject(); |
| | | |
| | | |
| | | |
| | | /** |
| | | * Get the root configuration client associated with this management |
| | | * context. |
| | | * |
| | | * @return Returns the root configuration client associated with |
| | | * this management context. |
| | | */ |
| | |
| | | return getRootConfigurationManagedObject().getConfiguration(); |
| | | } |
| | | |
| | | |
| | | |
| | | /** |
| | | * Gets the root configuration managed object associated with this |
| | | * management context. |
| | | * |
| | | * @return Returns the root configuration managed object associated |
| | | * with this management context. |
| | | */ |
| | | public abstract |
| | | ManagedObject<RootCfgClient> getRootConfigurationManagedObject(); |
| | | |
| | | } |