org.apache.geronimo.deployment
Class DeploymentConfigurationManager

java.lang.Object
  extended by org.apache.geronimo.kernel.config.SimpleConfigurationManager
      extended by org.apache.geronimo.deployment.DeploymentConfigurationManager
All Implemented Interfaces:
ConfigurationManager

public class DeploymentConfigurationManager
extends SimpleConfigurationManager


Field Summary
 
Fields inherited from class org.apache.geronimo.kernel.config.SimpleConfigurationManager
configurationModel, configurations, GBEAN_INFO, log, repositories, stores, watchers
 
Constructor Summary
DeploymentConfigurationManager(ConfigurationManager configurationManager, Collection repositories)
           
 
Method Summary
protected  void addNewConfigurationToModel(Configuration configuration)
           
 ArtifactResolver getArtifactResolver()
          Gets the common ArtifactResolver in case the caller wants to use this directly.
 Configuration getConfiguration(Artifact configurationId)
          Gets a loaded Configuration (does not see unloaded configurations).
 Artifact[] getInstalled(Artifact query)
          Given an artifact that's not fully resolved (e.g. some parts are missing), check whether there are any instances installed into the server environment.
 Artifact[] getLoaded(Artifact query)
          Given an artifact that's not fully resolved (e.g. some parts are missing), check whether there are any instances loaded.
 Artifact[] getRunning(Artifact query)
          Given an artifact that's not fully resolved (e.g. some parts are missing), check whether there are any instances running.
 ConfigurationStore getStoreForConfiguration(Artifact configId)
          Gets the configuration store responsible for the specified configuration, or null if there is none.
 ConfigurationStore[] getStores()
          Get all the ConfigurationStores known to this manager at present
 boolean isConfiguration(Artifact artifact)
          Is the specified artifact a configuration?
 boolean isInstalled(Artifact configId)
          Is the specified configuration installed into the server environment?
 boolean isLoaded(Artifact configId)
          Is the specified configuration loaded into the kernel?
 boolean isOnline()
          This configuration manager never starts any configurations
 boolean isRunning(Artifact configId)
          Is the specified configuation running?
 List listConfigurations()
          Gets a List>ConfigurationInfo< of every of every available configuation.
 List listConfigurations(AbstractName storeName)
          Return a list of the configurations in a specific store.
 List listStores()
          Return a list of the stores this manager knows about.
protected  void load(Artifact configurationId)
           
protected  Configuration load(ConfigurationData configurationData, LinkedHashSet resolvedParentIds, Map loadedConfigurations)
           
 LifecycleResults loadConfiguration(Artifact configurationId)
          Load the specified configuration (from a config store) and all configurations it depends on into the kernel.
 LifecycleResults loadConfiguration(Artifact configurationId, LifecycleMonitor monitor)
          Load the specified configuration (from a config store) and all configurations it depends on into the kernel.
 LifecycleResults loadConfiguration(ConfigurationData configurationData)
          Load the specified configurationData and all configurations it depends on (from a config store) into the kernel.
 LifecycleResults loadConfiguration(ConfigurationData configurationData, LifecycleMonitor monitor)
          Load the specified configurationData and all configurations it depends on (from a config store) into the kernel.
 LifecycleResults reloadConfiguration(Artifact id)
          Reloads the specified configuration and all configurations that have a dependency on the specified configuration
 LifecycleResults reloadConfiguration(Artifact id, LifecycleMonitor monitor)
          Reloads the specified configuration and all configurations that have a dependency on the specified configuration
 LifecycleResults reloadConfiguration(Artifact id, Version version)
          Reloads the specified configuration and all configurations that have a dependency on the specified configuration
 LifecycleResults reloadConfiguration(Artifact id, Version version, LifecycleMonitor monitor)
          Reloads the specified configuration and all configurations that have a dependency on the specified configuration
 LifecycleResults reloadConfiguration(ConfigurationData configurationData)
          Reloads the specified configuration and all configurations that have a dependency on the specified configuration
 LifecycleResults reloadConfiguration(ConfigurationData configurationData, LifecycleMonitor monitor)
          Reloads the specified configuration and all configurations that have a dependency on the specified configuration
 LifecycleResults restartConfiguration(Artifact id)
          Restarts the specified configuration and all configurations that have a service dependency on the specified configuration
 LifecycleResults restartConfiguration(Artifact id, LifecycleMonitor monitor)
          Restarts the specified configuration and all configurations that have a service dependency on the specified configuration
 void setOnline(boolean online)
           
protected  void start(Configuration configuration)
           
 LifecycleResults startConfiguration(Artifact id)
          Loads and starts all of the gbeans contained within the configuration.
 LifecycleResults startConfiguration(Artifact id, LifecycleMonitor monitor)
          Loads and starts all of the gbeans contained within the configuration.
protected  void stop(Configuration configuration)
           
 LifecycleResults stopConfiguration(Artifact id)
          Stop the gbeans contained within the configuration.
 LifecycleResults stopConfiguration(Artifact id, LifecycleMonitor monitor)
          Stop the gbeans contained within the configuration.
 void uninstallConfiguration(Artifact configurationId)
          Unstalls the specified configuration from the server.
protected  void unload(Configuration configuration)
           
 LifecycleResults unloadConfiguration(Artifact id)
          Stops and unloads the configuration.
 LifecycleResults unloadConfiguration(Artifact id, LifecycleMonitor monitor)
          Stops and unloads the configuration.
 
Methods inherited from class org.apache.geronimo.kernel.config.SimpleConfigurationManager
getGBeanInfo, getLoadParents, getRepositories, getStartParents, getStoreList, migrateConfiguration, removeConfigurationFromModel, sort, uninstall
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DeploymentConfigurationManager

public DeploymentConfigurationManager(ConfigurationManager configurationManager,
                                      Collection repositories)
Method Detail

isInstalled

public boolean isInstalled(Artifact configId)
Description copied from interface: ConfigurationManager
Is the specified configuration installed into the server environment? That is, does it exist in the configuration store, regardless of whether it's loaded or running? Note that this always returns false if the argument does not represent a configuration (e.g. if it's for a plain JAR).

Specified by:
isInstalled in interface ConfigurationManager
Overrides:
isInstalled in class SimpleConfigurationManager
Parameters:
configId - the configuration identifier, which must be fully resolved (isResolved() == true)
Returns:
true if the configuration has been loaded; false otherwise

isLoaded

public boolean isLoaded(Artifact configId)
Description copied from interface: ConfigurationManager
Is the specified configuration loaded into the kernel? Note that this always returns false if the argument does not represent a configuration (e.g. if it's for a plain JAR).

Specified by:
isLoaded in interface ConfigurationManager
Overrides:
isLoaded in class SimpleConfigurationManager
Parameters:
configId - the configuration identifier, which must be fully resolved (isResolved() == true)
Returns:
true if the configuration has been loaded; false otherwise

isRunning

public boolean isRunning(Artifact configId)
Description copied from interface: ConfigurationManager
Is the specified configuation running? Note that this always returns false if the argument does not represent a configuration (e.g. if it's for a plain JAR).

Specified by:
isRunning in interface ConfigurationManager
Overrides:
isRunning in class SimpleConfigurationManager
Parameters:
configId - the configuration identifier, which must be fully resolved (isResolved() == true)
Returns:
true if the configuration is running, false otherwise

isConfiguration

public boolean isConfiguration(Artifact artifact)
Description copied from interface: ConfigurationManager
Is the specified artifact a configuration?

Specified by:
isConfiguration in interface ConfigurationManager
Overrides:
isConfiguration in class SimpleConfigurationManager
Parameters:
artifact - the ID of the artifact to check, which must be fully resolved (isResolved() == true)
Returns:
true if the artifact is a configuration available in the server (regardless of whether it has been loaded/started)

getConfiguration

public Configuration getConfiguration(Artifact configurationId)
Description copied from interface: ConfigurationManager
Gets a loaded Configuration (does not see unloaded configurations).

Specified by:
getConfiguration in interface ConfigurationManager
Overrides:
getConfiguration in class SimpleConfigurationManager
Parameters:
configurationId - the unique ID of the configuration to get, which must be fully resolved (isResolved() == true)
Returns:
the specified configuration or null if the configuration has not been loaded

getArtifactResolver

public ArtifactResolver getArtifactResolver()
Description copied from interface: ConfigurationManager
Gets the common ArtifactResolver in case the caller wants to use this directly. It is configured for all the repositories known to this configuration manager, etc.

Specified by:
getArtifactResolver in interface ConfigurationManager
Overrides:
getArtifactResolver in class SimpleConfigurationManager

isOnline

public boolean isOnline()
This configuration manager never starts any configurations

Specified by:
isOnline in interface ConfigurationManager
Overrides:
isOnline in class SimpleConfigurationManager
Returns:
false

setOnline

public void setOnline(boolean online)
Specified by:
setOnline in interface ConfigurationManager
Overrides:
setOnline in class SimpleConfigurationManager

loadConfiguration

public LifecycleResults loadConfiguration(Artifact configurationId)
                                   throws NoSuchConfigException,
                                          LifecycleException
Description copied from interface: ConfigurationManager
Load the specified configuration (from a config store) and all configurations it depends on into the kernel. This causes the configuration gbean to be loaded and started, but does not load any of the gbeans contained within the configuration.

Specified by:
loadConfiguration in interface ConfigurationManager
Overrides:
loadConfiguration in class SimpleConfigurationManager
Parameters:
configurationId - the configuration identifier, which must be fully resolved (isResolved() == true)
Returns:
the results of the operation
Throws:
NoSuchConfigException - if no configuration with the given id exists in the configuration stores
LifecycleException - if there is a problem loading the configuration

loadConfiguration

public LifecycleResults loadConfiguration(Artifact configurationId,
                                          LifecycleMonitor monitor)
                                   throws NoSuchConfigException,
                                          LifecycleException
Description copied from interface: ConfigurationManager
Load the specified configuration (from a config store) and all configurations it depends on into the kernel. This causes the configuration gbean to be loaded and started, but does not load any of the gbeans contained within the configuration.

Specified by:
loadConfiguration in interface ConfigurationManager
Overrides:
loadConfiguration in class SimpleConfigurationManager
Parameters:
configurationId - the configuration identifier, which must be fully resolved (isResolved() == true)
monitor - the monitor that should receive events as the operation is carried out
Returns:
the results of the operation
Throws:
NoSuchConfigException - if no configuration with the given id exists in the configuration stores
LifecycleException - if there is a problem loading the configuration

loadConfiguration

public LifecycleResults loadConfiguration(ConfigurationData configurationData)
                                   throws NoSuchConfigException,
                                          LifecycleException
Description copied from interface: ConfigurationManager
Load the specified configurationData and all configurations it depends on (from a config store) into the kernel. This causes the configuration gbean to be loaded and started, but does not load any of the gbeans contained within the configuration.

Specified by:
loadConfiguration in interface ConfigurationManager
Overrides:
loadConfiguration in class SimpleConfigurationManager
Parameters:
configurationData - the configuration to load
Returns:
the results of the operation
Throws:
NoSuchConfigException - if no configuration with the given id exists in the configuration stores
LifecycleException - if there is a problem loading the configuration

loadConfiguration

public LifecycleResults loadConfiguration(ConfigurationData configurationData,
                                          LifecycleMonitor monitor)
                                   throws NoSuchConfigException,
                                          LifecycleException
Description copied from interface: ConfigurationManager
Load the specified configurationData and all configurations it depends on (from a config store) into the kernel. This causes the configuration gbean to be loaded and started, but does not load any of the gbeans contained within the configuration.

Specified by:
loadConfiguration in interface ConfigurationManager
Overrides:
loadConfiguration in class SimpleConfigurationManager
Parameters:
configurationData - the configuration to load
monitor - the monitor that should receive events as the operation is carried out
Returns:
the results of the operation
Throws:
NoSuchConfigException - if no configuration with the given id exists in the configuration stores
LifecycleException - if there is a problem loading the configuration

load

protected Configuration load(ConfigurationData configurationData,
                             LinkedHashSet resolvedParentIds,
                             Map loadedConfigurations)
                      throws InvalidConfigException
Overrides:
load in class SimpleConfigurationManager
Throws:
InvalidConfigException

load

protected void load(Artifact configurationId)
             throws NoSuchConfigException
Overrides:
load in class SimpleConfigurationManager
Throws:
NoSuchConfigException

addNewConfigurationToModel

protected void addNewConfigurationToModel(Configuration configuration)
                                   throws NoSuchConfigException
Overrides:
addNewConfigurationToModel in class SimpleConfigurationManager
Throws:
NoSuchConfigException

unloadConfiguration

public LifecycleResults unloadConfiguration(Artifact id)
                                     throws NoSuchConfigException
Description copied from interface: ConfigurationManager
Stops and unloads the configuration. This causes all contained gbeans to be stopped and unloaded, and the configuration gbean is stopped and unloaded. This operation causes all configurations that have a class or service dependency on the specified configuration to be stopped and unloaded.

Specified by:
unloadConfiguration in interface ConfigurationManager
Overrides:
unloadConfiguration in class SimpleConfigurationManager
Parameters:
id - the configuration identifier, which must be fully resolved (isResolved() == true)
Returns:
the results of the operation
Throws:
NoSuchConfigException - if the configuration is not loaded

unloadConfiguration

public LifecycleResults unloadConfiguration(Artifact id,
                                            LifecycleMonitor monitor)
                                     throws NoSuchConfigException
Description copied from interface: ConfigurationManager
Stops and unloads the configuration. This causes all contained gbeans to be stopped and unloaded, and the configuration gbean is stopped and unloaded. This operation causes all configurations that have a class or service dependency on the specified configuration to be stopped and unloaded.

Specified by:
unloadConfiguration in interface ConfigurationManager
Overrides:
unloadConfiguration in class SimpleConfigurationManager
Parameters:
id - the configuration identifier, which must be fully resolved (isResolved() == true)
monitor - the monitor that should receive events as the operation is carried out
Returns:
the results of the operation
Throws:
NoSuchConfigException - if the configuration is not loaded

unload

protected void unload(Configuration configuration)
Overrides:
unload in class SimpleConfigurationManager

stop

protected void stop(Configuration configuration)
Overrides:
stop in class SimpleConfigurationManager

getInstalled

public Artifact[] getInstalled(Artifact query)
Description copied from interface: ConfigurationManager
Given an artifact that's not fully resolved (e.g. some parts are missing), check whether there are any instances installed into the server environment. That is, are there any matches in the configuration store, regardless of whether they're loaded or running? Note that this always returns an empty array if the argument does not represent a configuration (e.g. if it's for a plain JAR).

Specified by:
getInstalled in interface ConfigurationManager
Overrides:
getInstalled in class SimpleConfigurationManager
Parameters:
query - The partially-complete artifact name to check for
Returns:
All matching artifacts that are loaded in the server

getLoaded

public Artifact[] getLoaded(Artifact query)
Description copied from interface: ConfigurationManager
Given an artifact that's not fully resolved (e.g. some parts are missing), check whether there are any instances loaded. Note that this always returns an empty array if the argument does not represent a configuration (e.g. if it's for a plain JAR).

Specified by:
getLoaded in interface ConfigurationManager
Overrides:
getLoaded in class SimpleConfigurationManager
Parameters:
query - The partially-complete artifact name to check for
Returns:
All matching artifacts that are loaded in the server

getRunning

public Artifact[] getRunning(Artifact query)
Description copied from interface: ConfigurationManager
Given an artifact that's not fully resolved (e.g. some parts are missing), check whether there are any instances running. Note that this always returns an empty array if the argument does not represent a configuration (e.g. if it's for a plain JAR).

Specified by:
getRunning in interface ConfigurationManager
Overrides:
getRunning in class SimpleConfigurationManager
Parameters:
query - The partially-complete artifact name to check for
Returns:
All matching artifacts that are loaded in the server

listStores

public List listStores()
Description copied from interface: ConfigurationManager
Return a list of the stores this manager knows about.

Specified by:
listStores in interface ConfigurationManager
Overrides:
listStores in class SimpleConfigurationManager
Returns:
a List>AbstractName< of the stores this manager controls

getStores

public ConfigurationStore[] getStores()
Description copied from interface: ConfigurationManager
Get all the ConfigurationStores known to this manager at present

Specified by:
getStores in interface ConfigurationManager
Overrides:
getStores in class SimpleConfigurationManager

listConfigurations

public List listConfigurations()
Description copied from interface: ConfigurationManager
Gets a List>ConfigurationInfo< of every of every available configuation. This includes all configurations installed, regardless of whether they are currently loaded or running.

Specified by:
listConfigurations in interface ConfigurationManager
Overrides:
listConfigurations in class SimpleConfigurationManager

getStoreForConfiguration

public ConfigurationStore getStoreForConfiguration(Artifact configId)
Description copied from interface: ConfigurationManager
Gets the configuration store responsible for the specified configuration, or null if there is none. The configuration need not be loaded or running; this just checks which store holds the data for it.

Specified by:
getStoreForConfiguration in interface ConfigurationManager
Overrides:
getStoreForConfiguration in class SimpleConfigurationManager
Parameters:
configId - The unique ID for the configuration to check for, which must be fully resolved (isResolved() == true)
Returns:
The ConfigurationStore for this configuration, or null if the configuration was not found in any configuration store.

listConfigurations

public List listConfigurations(AbstractName storeName)
                        throws NoSuchStoreException
Description copied from interface: ConfigurationManager
Return a list of the configurations in a specific store.

Specified by:
listConfigurations in interface ConfigurationManager
Overrides:
listConfigurations in class SimpleConfigurationManager
Parameters:
storeName - the store to list
Returns:
a List>ConfigurationInfo< of all the configurations in the store
Throws:
NoSuchStoreException - if the store could not be located

startConfiguration

public LifecycleResults startConfiguration(Artifact id)
                                    throws NoSuchConfigException,
                                           LifecycleException
Description copied from interface: ConfigurationManager
Loads and starts all of the gbeans contained within the configuration. If any of the gbeans fails to fully start, all gbeans will be unloaded and an exception will be thrown. This operation causes all configurations that the specified configuration has a service dependency on to be started.

Specified by:
startConfiguration in interface ConfigurationManager
Overrides:
startConfiguration in class SimpleConfigurationManager
Parameters:
id - the configuration identifier, which must be fully resolved (isResolved() == true)
Returns:
the results of the operation
Throws:
NoSuchConfigException - if the configuration is not loaded
LifecycleException

startConfiguration

public LifecycleResults startConfiguration(Artifact id,
                                           LifecycleMonitor monitor)
                                    throws NoSuchConfigException,
                                           LifecycleException
Description copied from interface: ConfigurationManager
Loads and starts all of the gbeans contained within the configuration. If any of the gbeans fails to fully start, all gbeans will be unloaded and an exception will be thrown. This operation causes all configurations that the specified configuration has a service dependency on to be started.

Specified by:
startConfiguration in interface ConfigurationManager
Overrides:
startConfiguration in class SimpleConfigurationManager
Parameters:
id - the configuration identifier, which must be fully resolved (isResolved() == true)
monitor - the monitor that should receive events as the operation is carried out
Returns:
the results of the operation
Throws:
NoSuchConfigException - if the configuration is not loaded
LifecycleException

start

protected void start(Configuration configuration)
              throws Exception
Overrides:
start in class SimpleConfigurationManager
Throws:
Exception

stopConfiguration

public LifecycleResults stopConfiguration(Artifact id)
                                   throws NoSuchConfigException
Description copied from interface: ConfigurationManager
Stop the gbeans contained within the configuration. This operation causes all configurations that have a service dependency on the specified configuration to be stopped.

Specified by:
stopConfiguration in interface ConfigurationManager
Overrides:
stopConfiguration in class SimpleConfigurationManager
Parameters:
id - the configuration identifier, which must be fully resolved (isResolved() == true)
Returns:
the results of the operation
Throws:
NoSuchConfigException - if the configuration is not loaded

stopConfiguration

public LifecycleResults stopConfiguration(Artifact id,
                                          LifecycleMonitor monitor)
                                   throws NoSuchConfigException
Description copied from interface: ConfigurationManager
Stop the gbeans contained within the configuration. This operation causes all configurations that have a service dependency on the specified configuration to be stopped.

Specified by:
stopConfiguration in interface ConfigurationManager
Overrides:
stopConfiguration in class SimpleConfigurationManager
Parameters:
id - the configuration identifier, which must be fully resolved (isResolved() == true)
monitor - the monitor that should receive events as the operation is carried out
Returns:
the results of the operation
Throws:
NoSuchConfigException - if the configuration is not loaded

restartConfiguration

public LifecycleResults restartConfiguration(Artifact id)
                                      throws NoSuchConfigException,
                                             LifecycleException
Description copied from interface: ConfigurationManager
Restarts the specified configuration and all configurations that have a service dependency on the specified configuration

Specified by:
restartConfiguration in interface ConfigurationManager
Overrides:
restartConfiguration in class SimpleConfigurationManager
Parameters:
id - the configuration identifier, which must be fully resolved (isResolved() == true)
Returns:
the results of the operation
Throws:
NoSuchConfigException - if the configuration is not loaded
LifecycleException - if there is a problem loading the configuration

restartConfiguration

public LifecycleResults restartConfiguration(Artifact id,
                                             LifecycleMonitor monitor)
                                      throws NoSuchConfigException,
                                             LifecycleException
Description copied from interface: ConfigurationManager
Restarts the specified configuration and all configurations that have a service dependency on the specified configuration

Specified by:
restartConfiguration in interface ConfigurationManager
Overrides:
restartConfiguration in class SimpleConfigurationManager
Parameters:
id - the configuration identifier, which must be fully resolved (isResolved() == true)
monitor - the monitor that should receive events as the operation is carried out
Returns:
the results of the operation
Throws:
NoSuchConfigException - if the configuration is not loaded
LifecycleException - if there is a problem loading the configuration

reloadConfiguration

public LifecycleResults reloadConfiguration(Artifact id)
                                     throws NoSuchConfigException,
                                            LifecycleException
Description copied from interface: ConfigurationManager
Reloads the specified configuration and all configurations that have a dependency on the specified configuration

Specified by:
reloadConfiguration in interface ConfigurationManager
Overrides:
reloadConfiguration in class SimpleConfigurationManager
Parameters:
id - the configuration identifier, which must be fully resolved (isResolved() == true)
Returns:
the results of the operation
Throws:
NoSuchConfigException - if the configuration is not loaded
LifecycleException - if there is a problem loading the configuration

reloadConfiguration

public LifecycleResults reloadConfiguration(Artifact id,
                                            LifecycleMonitor monitor)
                                     throws NoSuchConfigException,
                                            LifecycleException
Description copied from interface: ConfigurationManager
Reloads the specified configuration and all configurations that have a dependency on the specified configuration

Specified by:
reloadConfiguration in interface ConfigurationManager
Overrides:
reloadConfiguration in class SimpleConfigurationManager
Parameters:
id - the configuration identifier, which must be fully resolved (isResolved() == true)
monitor - the monitor that should receive events as the operation is carried out
Returns:
the results of the operation
Throws:
NoSuchConfigException - if the configuration is not loaded
LifecycleException - if there is a problem loading the configuration

reloadConfiguration

public LifecycleResults reloadConfiguration(Artifact id,
                                            Version version)
                                     throws NoSuchConfigException,
                                            LifecycleException
Description copied from interface: ConfigurationManager
Reloads the specified configuration and all configurations that have a dependency on the specified configuration

Specified by:
reloadConfiguration in interface ConfigurationManager
Overrides:
reloadConfiguration in class SimpleConfigurationManager
Parameters:
id - the configuration identifier, which must be fully resolved (isResolved() == true)
version - new version to load from the config store
Returns:
the results of the operation
Throws:
NoSuchConfigException - if the configuration is not loaded
LifecycleException - if there is a problem loading the configuration

reloadConfiguration

public LifecycleResults reloadConfiguration(Artifact id,
                                            Version version,
                                            LifecycleMonitor monitor)
                                     throws NoSuchConfigException,
                                            LifecycleException
Description copied from interface: ConfigurationManager
Reloads the specified configuration and all configurations that have a dependency on the specified configuration

Specified by:
reloadConfiguration in interface ConfigurationManager
Overrides:
reloadConfiguration in class SimpleConfigurationManager
Parameters:
id - the configuration identifier, which must be fully resolved (isResolved() == true)
version - new version to load from the config store
monitor - the monitor that should receive events as the operation is carried out
Returns:
the results of the operation
Throws:
NoSuchConfigException - if the configuration is not loaded
LifecycleException - if there is a problem loading the configuration

reloadConfiguration

public LifecycleResults reloadConfiguration(ConfigurationData configurationData)
                                     throws LifecycleException,
                                            NoSuchConfigException
Description copied from interface: ConfigurationManager
Reloads the specified configuration and all configurations that have a dependency on the specified configuration

Specified by:
reloadConfiguration in interface ConfigurationManager
Overrides:
reloadConfiguration in class SimpleConfigurationManager
Parameters:
configurationData - the configuration to load
Returns:
the results of the operation
Throws:
LifecycleException - if there is a problem loading the configuration
NoSuchConfigException - if the configuration is not loaded

reloadConfiguration

public LifecycleResults reloadConfiguration(ConfigurationData configurationData,
                                            LifecycleMonitor monitor)
                                     throws LifecycleException,
                                            NoSuchConfigException
Description copied from interface: ConfigurationManager
Reloads the specified configuration and all configurations that have a dependency on the specified configuration

Specified by:
reloadConfiguration in interface ConfigurationManager
Overrides:
reloadConfiguration in class SimpleConfigurationManager
Parameters:
configurationData - the configuration to load
monitor - the monitor that should receive events as the operation is carried out
Returns:
the results of the operation
Throws:
LifecycleException - if there is a problem loading the configuration
NoSuchConfigException - if the configuration is not loaded

uninstallConfiguration

public void uninstallConfiguration(Artifact configurationId)
                            throws IOException,
                                   NoSuchConfigException
Description copied from interface: ConfigurationManager
Unstalls the specified configuration from the server. This operation can not be reversed.

Specified by:
uninstallConfiguration in interface ConfigurationManager
Overrides:
uninstallConfiguration in class SimpleConfigurationManager
Parameters:
configurationId - the configuration identifier, which must be fully resolved (isResolved() == true)
Throws:
IOException - if there was a problem removing the configuration
NoSuchConfigException - if the configuration is not loaded


Copyright © 2003-2008 The Apache Geronimo development community. All Rights Reserved.