Uses of Class
com.metamatrix.common.config.api.exceptions.ConfigurationException

Packages that use ConfigurationException
com.metamatrix.common.config   
com.metamatrix.common.config.api   
com.metamatrix.common.config.api.exceptions   
com.metamatrix.common.config.model   
com.metamatrix.common.config.reader   
com.metamatrix.platform.admin.api   
 

Uses of ConfigurationException in com.metamatrix.common.config
 

Methods in com.metamatrix.common.config that throw ConfigurationException
 java.util.Properties CurrentConfiguration.getBootStrapProperties()
           
 java.lang.String CurrentConfiguration.getClusterName()
           
 java.util.Collection CurrentConfiguration.getComponentTypes(boolean includeDeprecated)
          Returns a Collection of type ComponentType that represent all the ComponentTypes defined.
 Configuration CurrentConfiguration.getConfiguration()
          Get the current configuration that is to be used for deployment.
 ConfigurationModelContainer CurrentConfiguration.getConfigurationModel()
          Get the current configuration that is to be used for deployment.
 Host CurrentConfiguration.getDefaultHost()
          Returns the Host based on the current running machine.
 java.util.Collection CurrentConfiguration.getProductTypes()
          Returns a Collection of type ProductType that represents all the ComponentTypes defined.
 java.util.Properties CurrentConfiguration.getResourceProperties(java.lang.String resourceName)
          Get the connection properties for the specified resource.
 void CurrentConfiguration.indicateSystemShutdown()
          This will put the system into a state of #STATE_STOPPED.
 void CurrentConfiguration.performSystemInitialization(boolean forceInitialization)
          This method should be called only by StartupStateController, which is used by MetaMatrixController to initialize the system configurations during bootstrapping.
static void StartupStateController.performSystemInitialization(boolean forceInitialization)
          This method should be called only by MetaMatrixController to initialize the system configurations during bootstrapping.
 void CurrentConfiguration.reset()
          Reset causes not just a refresh, but the bootstrapping process to occur again.
 void CurrentConfiguration.verifyBootstrapProperties()
          Returns the instance of CofigurationBootMgr to use to get configuration information.
 

Uses of ConfigurationException in com.metamatrix.common.config.api
 

Methods in com.metamatrix.common.config.api that throw ConfigurationException
 ConfigurationModelContainer ConfigurationModelContainer.copyAs(ConfigurationID configID)
           
 Configuration ConfigurationObjectEditor.delete(ComponentObject target, Configuration configuration)
          Removes the component object from the specified configuration if no dependent objects exist and returns an updated configuration.
 Configuration ConfigurationObjectEditor.delete(ComponentObject target, Configuration configuration, boolean deleteDependencies)
          Removes the component object from the specified configuration if no dependent objects exist.
 void ConfigurationObjectEditor.delete(ComponentType target)
          Call to delete a component type and all its definitions.
 void ConfigurationObjectEditor.delete(ComponentTypeDefn target, ComponentType type)
          Call to delete a ComponentTypeDefn and remove it from the ComponentType.
 void ConfigurationObjectEditor.delete(Configuration target)
          Call to delete a configuration, which is assumed to have no dependencies.
 void ConfigurationObjectEditor.delete(Configuration target, boolean deleteDependencies)
          Deletes the configuration if there exist no dependent objects.
 void ConfigurationObjectEditor.delete(ConfigurationID targetID)
          Call to delete a configuration and all its dependencies.
 void ConfigurationObjectEditor.delete(Host target)
          Call to delete a host
 SharedResource ConfigurationObjectEditor.delete(SharedResource target)
          Deletes the shared resource.
 ProductServiceConfig ConfigurationObjectEditor.renamePSC(ProductServiceConfig psc, java.lang.String name)
          Change the name of a previously defined PSC.
 VMComponentDefn ConfigurationObjectEditor.renameVM(VMComponentDefn vm, java.lang.String name)
          Change the name of a previously defined VM.
 void ConfigurationObjectEditor.setBootStrapConfiguration(ConfigurationID configurationID)
          Deprecated. as of v 2.0 beta 1, use ConfigurationObjectEditor.setNextStartupConfiguration(com.metamatrix.common.config.api.ConfigurationID)
 java.util.Collection ConfigurationObjectEditor.setEnabled(Configuration configuration, ServiceComponentDefn serviceComponentDefn, ProductServiceConfig psc, boolean enabled, boolean deleteDeployedComps)
          Sets whether the indicated ServiceComponentDefn is enabled for deployment (when the PSC which contains it is deployed) or not.
 void ConfigurationObjectEditor.setNextStartupConfiguration(ConfigurationID configurationID)
          Sets the system next startup configuration
 ProductServiceConfig ConfigurationObjectEditor.updateProductServiceConfig(Configuration config, ProductServiceConfig psc, java.util.Collection newServiceIDList)
          This method will update a PSC by adding the new service list of ID's and removing the service ID's from the PSC that are not in the service list.
 

Uses of ConfigurationException in com.metamatrix.common.config.api.exceptions
 

Subclasses of ConfigurationException in com.metamatrix.common.config.api.exceptions
 class ConfigurationConnectionException
           
 class ConfigurationLockException
           
 class DuplicateComponentException
           
 class InvalidArgumentException
           
 class InvalidComponentException
           
 class InvalidComponentIDCharacterException
           
 class InvalidComponentIDFormatException
           
 class InvalidConfigurationException
           
 class InvalidDeployedComponentException
           
 class InvalidNameException
           
 class InvalidPropertyValueException
           
 class InvalidStringValueException
           
 class InvalidVersionException
           
 class ZeroLengthComponentIDException
           
 

Uses of ConfigurationException in com.metamatrix.common.config.model
 

Methods in com.metamatrix.common.config.model that throw ConfigurationException
 void ConfigurationModelContainerImpl.addObject(java.lang.Object obj)
           
 void ConfigurationModelContainerImpl.addObjects(java.util.Collection objects)
           
 ConfigurationModelContainer ConfigurationModelContainerImpl.copyAs(ConfigurationID configID)
           
static Host ConfigurationObjectEditorHelper.createHost(Configuration config, java.lang.String hostName)
           
 Configuration BasicConfigurationObjectEditor.delete(ComponentObject target, Configuration configuration)
           
 Configuration BasicConfigurationObjectEditor.delete(ComponentObject target, Configuration configuration, boolean deleteDependencies)
           
static Configuration ConfigurationObjectEditorHelper.delete(ComponentObjectID targetID, Configuration configuration)
           
 void BasicConfigurationObjectEditor.delete(ComponentType target)
           
 void BasicConfigurationObjectEditor.delete(ComponentTypeDefn target, ComponentType type)
           
 void BasicConfigurationObjectEditor.delete(Configuration target)
           
 void BasicConfigurationObjectEditor.delete(Configuration target, boolean deleteDependencies)
           
 void BasicConfigurationObjectEditor.delete(ConfigurationID targetID)
           
 void BasicConfigurationObjectEditor.delete(Host target)
           
 void BasicConfigurationObjectEditor.delete(PropDefnAllowedValue target)
           
 SharedResource BasicConfigurationObjectEditor.delete(SharedResource target)
           
static java.util.Properties ComponentCryptoUtil.getDecryptedProperties(ComponentDefn defn)
           
 void PropertyValidations.isPropertyValid(java.lang.String key, java.lang.String value)
           
 ConfigurationModelContainer ConfigurationModelContainerAdapter.readConfigurationModel(java.io.InputStream inputStream, ConfigurationID configID)
           
 ConfigurationModelContainer ConfigurationModelContainerAdapter.readConfigurationModel(java.lang.String file, ConfigurationID configID)
           
 void ConfigurationModelContainerImpl.remove(BaseID objID)
           
 ProductServiceConfig BasicConfigurationObjectEditor.renamePSC(ProductServiceConfig psc, java.lang.String name)
          Change the name of a previously defined PSC in the Next Startup config.
 VMComponentDefn BasicConfigurationObjectEditor.renameVM(VMComponentDefn vm, java.lang.String name)
          Change the name of a previously defined VM in the Next Startup config.
 void BasicConfigurationObjectEditor.setBootStrapConfiguration(ConfigurationID configurationID)
          Deprecated. as of v 2.0 beta 1, use BasicConfigurationObjectEditor.setNextStartupConfiguration(com.metamatrix.common.config.api.ConfigurationID)
 void ConfigurationModelContainerImpl.setConfigurationObjects(java.util.Collection objects)
          Method used when the XMLConfiguration is initialized for the first time.
 java.util.Collection BasicConfigurationObjectEditor.setEnabled(Configuration configuration, ServiceComponentDefn serviceComponentDefn, ProductServiceConfig psc, boolean enabled, boolean deleteDeployedComps)
           
 void BasicConfigurationObjectEditor.setNextStartupConfiguration(ConfigurationID configurationID)
          Sets the system next startup configuration
 void BasicConfigurationObjectEditor.setStartupConfiguration(ConfigurationID configurationID)
          Sets the system startup configuration (This method will not be declared in the public interface ConfigurationObjectEditor, since the startup configuration should not be modifiable.
protected  void PropertyValidations.throwException(java.lang.String msg)
           
 ProductServiceConfig BasicConfigurationObjectEditor.updateProductServiceConfig(Configuration config, ProductServiceConfig psc, java.util.Collection newServiceIDList)
          This method will update a PSC by adding the new service list of ID's and removing the service ID's from the PSC that are not in the service list.
protected  void PropertyValidations.validate_multicast_port(java.lang.String key, java.lang.String value)
           
protected  void PropertyValidations.validate_nonnull_and_contiguous(java.lang.String display, java.lang.String key, java.lang.String value)
           
protected  void PropertyValidations.validate_port_range(java.lang.String key, java.lang.String value, int start, int end)
           
 void ConfigurationModelContainerAdapter.writeConfigurationModel(java.io.OutputStream out, ConfigurationModelContainer model, java.lang.String principalName)
           
 void ConfigurationModelContainerAdapter.writeConfigurationModel(java.lang.String file, ConfigurationModelContainer model, java.lang.String principalName)
           
 

Constructors in com.metamatrix.common.config.model that throw ConfigurationException
ConfigurationModelContainerImpl(java.util.ArrayList configObjects)
           
ConfigurationModelContainerImpl(java.util.Collection configObjects)
           
 

Uses of ConfigurationException in com.metamatrix.common.config.reader
 

Methods in com.metamatrix.common.config.reader that throw ConfigurationException
 ConfigurationModelContainer PropertiesConfigurationReader.getConfigurationModel()
          Obtain the next startup configuration model.
 ConfigurationModelContainer CurrentConfigurationReader.getConfigurationModel()
          Obtain the next startup configuration model.
 void PropertiesConfigurationReader.indicateSystemShutdown()
           
 void CurrentConfigurationReader.indicateSystemShutdown()
          This will put the system into a state of StartupStateController.STATE_STOPPED.
 void PropertiesConfigurationReader.performSystemInitialization(boolean forceInitialization)
           
 void CurrentConfigurationReader.performSystemInitialization(boolean forceInitialization)
          This method should be called only by MetaMatrixController to initialize the system configurations during bootstrapping.
 

Uses of ConfigurationException in com.metamatrix.platform.admin.api
 

Methods in com.metamatrix.platform.admin.api that throw ConfigurationException
 Host ConfigurationAdminAPI.addHost(java.lang.String hostName, java.util.Properties properties)
          Add a host to the Configuration
 void ConfigurationAdminAPI.baselineCurrentConfiguration()
          Baselines the realtime portion of the current (operational) configuration into the next-startup configuration.
 java.util.List ConfigurationAdminAPI.checkPropertiesDecryptable(java.util.List defns)
          Check whether the encrypted properties for the specified ComponentDefns can be decrypted.
 void ConfigurationAdminAPI.clearHistory()
          Clear the history of all actions without undoing any of them.
 ConfigurationObjectEditor ConfigurationAdminAPI.createEditor()
          Returns a ConfigurationObjectEditor to perform editing operations on a configuration type object.
 java.util.Set ConfigurationAdminAPI.executeInsertTransaction(ConfigurationID assignConfigurationID, java.util.List actions)
          Execute a list of insert actions and for actions on objects of type ComponentDefn or DeployedComponent object, it will have its configuration id resassigned, and optionally return the set of objects or object IDs that were affected/modified by the action.
 java.util.Set ConfigurationAdminAPI.executeTransaction(ActionDefinition action)
          Execute as a single transaction the specified action, and optionally return the set of objects or object IDs that were affected/modified by the action.
 java.util.Set ConfigurationAdminAPI.executeTransaction(java.util.List actions)
          Execute a list of actions, and optionally return the set of objects or object IDs that were affected/modified by the action.
 java.util.Collection ConfigurationAdminAPI.getAllComponentTypeDefinitions(ComponentTypeID componentTypeID)
          Returns the all component type definitions for the specified ComponentTypeID.
 java.util.Collection ConfigurationAdminAPI.getAllComponentTypes(boolean includeDeprecated)
          Returns a List of type ComponentType that represents all the ComponentTypes defined.
 java.util.Collection ConfigurationAdminAPI.getAllGlobalConfigObjects()
          This method will return a Collection of objects that represent the set of global configuration objects currently represented in the configuration database.
 java.util.Collection ConfigurationAdminAPI.getAllProductTypes(boolean includeDeprecated)
          Returns a List of type ProductType that represents all the ProductTypes defined.
 ComponentDefn ConfigurationAdminAPI.getComponentDefn(ConfigurationID configurationID, ComponentDefnID componentDefnID)
          Returns a ComponentDefn for the specified ComponentDefnID.
 java.util.Collection ConfigurationAdminAPI.getComponentDefns(java.util.Collection componentDefnIDs, ConfigurationID configurationID)
          Returns a collection of ComponentDefns for the specified collection of ComponentDefnIDs and ConfigurationID.
 ComponentType ConfigurationAdminAPI.getComponentType(ComponentTypeID id)
          Returns a ComponentType for the specified ComponentTypeID
 java.util.Map ConfigurationAdminAPI.getComponentTypeDefinitions(java.util.Collection componentIDs)
          Returns a Map of component type definitions for each ComponentTypeID that is contained in the passed Collection.
 java.util.Collection ConfigurationAdminAPI.getComponentTypeDefinitions(ComponentTypeID componentTypeID)
          Returns the component type definitions for the specified ComponentTypeID.
 Configuration ConfigurationAdminAPI.getConfiguration(java.lang.String configName)
          Returns the named Configuration.
 java.util.Collection ConfigurationAdminAPI.getConfigurationAndDependents(ConfigurationID configID)
          Returns a Collection containing the Configuration object for the specified ConfigurationID id, and also any dependant objects needed to fully define this configuration, such as Host objects, ComponentType objects, and ComponentTypeDefn objects.
 ConfigurationModelContainer ConfigurationAdminAPI.getConfigurationModel(java.lang.String configName)
          Returns the current ConfigurationModelContainer.
 Configuration ConfigurationAdminAPI.getCurrentConfiguration()
          Returns the current deployed Configuration.
 ConfigurationID ConfigurationAdminAPI.getCurrentConfigurationID()
          Returns the ConfigurationID for the current configuration.
 java.util.List ConfigurationAdminAPI.getHistory()
          Get the history of actions executed in transactions by this editor.
 int ConfigurationAdminAPI.getHistoryLimit()
          Set the limit on the number of actions in the history.
 int ConfigurationAdminAPI.getHistorySize()
          Get the number of actions that are currently in the history.
 Host ConfigurationAdminAPI.getHost(HostID hostID)
          Returns a Host for the specified HostID.
 java.util.Collection ConfigurationAdminAPI.getHosts()
          Returns a Collection of currently defined hosts.
 java.util.Collection ConfigurationAdminAPI.getMonitoredComponentTypes(boolean includeDeprecated)
          Returns a List of type ComponentType .
 Configuration ConfigurationAdminAPI.getNextStartupConfiguration()
          Returns the current deployed Configuration.
 ConfigurationID ConfigurationAdminAPI.getNextStartupConfigurationID()
          Returns the ID of the next startup Configuration, which should reflect the desired runtime state of the system.
 java.util.Collection ConfigurationAdminAPI.getResources()
          Returns a Collection of ResourceDescriptor for all internal resources defined to the system.
 java.util.Collection ConfigurationAdminAPI.getResources(ComponentTypeID componentTypeID)
          Returns a Collection of ResourceDescriptor that are of the specified resource type.
 Configuration ConfigurationAdminAPI.getStartupConfiguration()
          Returns the current deployed Configuration.
 ConfigurationID ConfigurationAdminAPI.getStartupConfigurationID()
          Returns the ID of the startup Configuration, which should reflect the desired runtime state of the system.
 void ConfigurationAdminAPI.saveResources(java.util.Collection resourceDescriptors)
          Save the resource changes based on each ResourceDescriptor in the collection.
 void ConfigurationAdminAPI.setHistoryLimit(int maximumHistoryCount)
          Set the limit on the number of actions in the history.
 java.util.Set ConfigurationAdminAPI.undoActionsAsTransaction(int numberOfActions)
          Undo the specified number of previously-committed transactions.
 



Copyright © 2009. All Rights Reserved.