com.businessobjects.sdk.plugin.desktop.common
Interface IConfiguredContainer


public interface IConfiguredContainer

This interface provides access to the configuration information for the service container associated with a server.

Note that this information can be retrieved from the repository by querying for either a server or a service container. A server query must include the SI_CONFIGURED_CONTAINERS property. A service query must include the SI_CONTAINER_INSTANCES property.

See Also:
IServer, IServiceContainer

Method Summary
 boolean isUsingContainerConfigProps()
          Returns whether this configured container is using the configuration property values of the associated service container.
 void resetToContainerConfigProps()
          Resets the configuration properties to the current values of the associated service container.
 void useContainerConfigProps()
          Sets this configured container to use the configuration property values of the associated service container.
 

Method Detail

isUsingContainerConfigProps

boolean isUsingContainerConfigProps()
Returns whether this configured container is using the configuration property values of the associated service container.

Returns:
true if using the configuration property values of the associated service container, false otherwise.
See Also:
IConfiguredContainer.useContainerConfigProps()

useContainerConfigProps

void useContainerConfigProps()
                             throws SDKException
Sets this configured container to use the configuration property values of the associated service container. If the configuration properties of the service container are modified, those changes are automatically propagated to this configured container.

Throws:
SDKException - if the process is unsuccessful.
See Also:
IConfiguredContainer.isUsingContainerConfigProps()

resetToContainerConfigProps

void resetToContainerConfigProps()
                                 throws SDKException
Resets the configuration properties to the current values of the associated service container.

This method has no effect if IConfiguredContainer.isUsingContainerConfigProps() is true.

Throws:
SDKException - if the process is unsuccessful.
See Also:
#resetToFactoryConfigProps