Uses of Class
com.metamatrix.common.config.api.ComponentTypeID

Packages that use ComponentTypeID
com.metamatrix.common.config.api   
com.metamatrix.common.config.model   
com.metamatrix.platform.admin.api   
com.metamatrix.platform.admin.apiimpl   
com.metamatrix.platform.config.api.service   
com.metamatrix.platform.config.service   
 

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

Fields in com.metamatrix.common.config.api declared as ComponentTypeID
static ComponentTypeID AuthenticationProviderType.AUTHPROVIDER_TYPE_ID
           
static ComponentTypeID Configuration.CONFIG_COMPONENT_TYPE_ID
           
static ComponentTypeID ConnectorBindingType.CONNECTOR_TYPE_ID
           
static ComponentTypeID Host.HOST_COMPONENT_TYPE_ID
           
static ComponentTypeID SharedResource.MISC_COMPONENT_TYPE_ID
           
static ComponentTypeID VMComponentDefn.VM_COMPONENT_TYPE_ID
           
 

Methods in com.metamatrix.common.config.api that return ComponentTypeID
 ComponentTypeID ComponentObject.getComponentTypeID()
          Returns the component type
 ComponentTypeID ComponentTypeDefn.getComponentTypeID()
          Returns the id for ComponentType this definition applies to;
 ComponentTypeID PropDefnAllowedValue.getComponentTypeID()
          Returns the ComponentTypeID this represents the type of component this is defined for.
 ComponentTypeID ComponentType.getParentComponentTypeID()
          Returns the parent component type id
 ComponentTypeID ComponentType.getSuperComponentTypeID()
          Returns the super component type id
 

Methods in com.metamatrix.common.config.api with parameters of type ComponentTypeID
 AuthenticationProvider ConfigurationObjectEditor.createAuthenticationProviderComponent(ConfigurationID configuID, ComponentTypeID typeID, java.lang.String descriptorName)
          This method will create a provider component based on the specific component type ID
 ComponentType ConfigurationObjectEditor.createComponentType(int classTypeCode, java.lang.String name, ComponentTypeID parentID, ComponentTypeID superID, boolean deployable, boolean monitored)
          Create a new ComponentType instance with the specified name.
 ComponentTypeDefn ConfigurationObjectEditor.createComponentTypeDefn(ComponentTypeID typeID, PropertyDefinition propertyDefinition, boolean isEffectiveImmediately)
          Create a new ComponentTypeDefn instance with the specified name.
 ConnectorBinding ConfigurationObjectEditor.createConnectorComponent(ConfigurationID configuID, ComponentTypeID typeID, java.lang.String descriptorName, java.lang.String routingUUID)
          This method will create a connector component based on the specific component type ID
 DeployedComponent ConfigurationObjectEditor.createDeployedServiceComponent(java.lang.String instanceName, ConfigurationID configurationID, HostID hostId, VMComponentDefnID vmId, ServiceComponentDefnID serviceComponentDefnID, ComponentTypeID serviceComponentTypeID)
          Create a new DeployedComponent instance respresenting a deployed Service.
 ResourceDescriptor ConfigurationObjectEditor.createResourceDescriptor(Configuration configuration, ComponentTypeID typeID, java.lang.String descriptorName)
          Create a new ResourceDescriptor Component Definition instance with a specified configuration
 ResourceDescriptor ConfigurationObjectEditor.createResourceDescriptor(ConfigurationID configurationID, ComponentTypeID typeID, java.lang.String descriptorName)
          Create a new ResourceDescriptor Component Definition instance with a specified configuration
 ServiceComponentDefn ConfigurationObjectEditor.createServiceComponentDefn(Configuration configuration, ComponentTypeID typeID, java.lang.String componentName)
          Create a new Service Component Definition instance with a specified configuration
 ServiceComponentDefn ConfigurationObjectEditor.createServiceComponentDefn(Configuration configuration, ComponentTypeID typeID, java.lang.String componentName, java.lang.String routingUUID)
          Create a new Service Component Definition instance with a specified configuration
 ServiceComponentDefn ConfigurationObjectEditor.createServiceComponentDefn(ConfigurationID configurationID, ComponentTypeID typeID, java.lang.String componentName)
          Create a new Service Component Definition instance with a specified configuration
 ServiceComponentDefn ConfigurationObjectEditor.createServiceComponentDefn(ConfigurationID configurationID, ComponentTypeID typeID, java.lang.String componentName, java.lang.String routingUUID)
          Create a new Service Component Definition instance with a specified configuration
 SharedResource ConfigurationObjectEditor.createSharedResource(ComponentTypeID typeID, java.lang.String resourceName)
          Create a new SharedResource instance
 VMComponentDefn ConfigurationObjectEditor.createVMComponentDefn(Configuration configuration, HostID hostID, ComponentTypeID typeID, java.lang.String componentName)
          Create a new VM Component Definition instance with a specified configuration
 VMComponentDefn ConfigurationObjectEditor.createVMComponentDefn(ConfigurationID configurationID, HostID hostID, ComponentTypeID typeID, java.lang.String componentName)
          Create a new VM Component Definition instance with a specified configuration
 java.util.Collection ConfigurationModelContainer.getAllComponentTypeDefinitions(ComponentTypeID typeID)
          Return a collection of the ComponentTypeDefinitions for the request component type
 java.util.Collection Configuration.getComponentDefnIDs(ComponentTypeID componentTypeID)
          Returns a Collection of ComponentDefnID objects that are of the indicated type.
 ComponentTypeDefn ConfigurationModelContainer.getComponentTypeDefinition(ComponentTypeID typeID, java.lang.String defnName)
          Return a ComponentTypeDefn for a give typeID and defnName.
 java.util.Properties ConfigurationModelContainer.getDefaultPropertyValues(ComponentTypeID componentTypeID)
          Return a properties object that contains the default properties defined for the specified component type
 java.util.Properties ConfigurationModelContainer.getDefaultPropertyValues(java.util.Properties defaultProperties, ComponentTypeID componentTypeID)
           
 ComponentObject ConfigurationObjectEditor.setComponentType(ComponentObject t, ComponentTypeID componentType)
          Sets the component type on the specifice component object.
 ComponentType ConfigurationObjectEditor.setParentComponentTypeID(ComponentType t, ComponentTypeID parentID)
          Sets the parent component type, null is allowed;
 ComponentType ConfigurationObjectEditor.setSuperComponentTypeID(ComponentType t, ComponentTypeID superID)
          Sets the super component type, null is allowed;
 

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

Methods in com.metamatrix.common.config.model that return ComponentTypeID
 ComponentTypeID BasicPropDefnAllowedValue.getComponentTypeID()
           
 ComponentTypeID BasicComponentObject.getComponentTypeID()
           
 ComponentTypeID BasicComponentTypeDefn.getComponentTypeID()
           
 ComponentTypeID BasicComponentType.getParentComponentTypeID()
           
 ComponentTypeID BasicComponentType.getSuperComponentTypeID()
           
 

Methods in com.metamatrix.common.config.model with parameters of type ComponentTypeID
 AuthenticationProvider BasicConfigurationObjectEditor.createAuthenticationProviderComponent(ConfigurationID configurationID, ComponentTypeID typeID, java.lang.String descriptorName)
           
static BasicComponentDefn BasicUtil.createComponentDefn(int defnTypeCode, ConfigurationID configID, ComponentTypeID typeID, java.lang.String defnName)
          static method that is used to create the specified instance type of BasicComponentDefn.
 BasicComponentDefn BasicConfigurationObjectEditor.createComponentDefn(int defnTypeCode, ConfigurationID configID, ComponentTypeID typeID, java.lang.String defnName)
          This method is not provided in the interface, it is only used by the spi implementation for ease of creating the correct type of component defn.
static BasicComponentDefn BasicUtil.createComponentDefn(int defnTypeCode, ConfigurationID configID, HostID hostID, ComponentTypeID typeID, java.lang.String defnName)
           
static BasicComponentObject BasicUtil.createComponentObject(int defnTypeCode, ComponentTypeID typeID, java.lang.String objName)
          static method that is used to create the specified instance type of BasicComponentObject for a PSC.
static BasicComponentType BasicUtil.createComponentType(int classTypeCode, java.lang.String name, ComponentTypeID parentID, ComponentTypeID superID, boolean deployable, boolean monitored)
          static method that is used to create the specified instance type of BasicComponentType.
 ComponentType BasicConfigurationObjectEditor.createComponentType(int classTypeCode, java.lang.String name, ComponentTypeID parentID, ComponentTypeID superID, boolean deployable, boolean monitored)
          Copy-create method - creates a deep-copy of the original configuration, with the new name.
 ComponentTypeDefn BasicConfigurationObjectEditor.createComponentTypeDefn(ComponentTypeID typeID, PropertyDefinition propertyDefinition)
          Deprecated. as of v 2.0 beta 1, use BasicConfigurationObjectEditor.createComponentTypeDefn(ComponentTypeID, PropertyDefinition, boolean)
 ComponentTypeDefn BasicConfigurationObjectEditor.createComponentTypeDefn(ComponentTypeID typeID, PropertyDefinition propertyDefinition, boolean isEffectiveImmediately)
           
 ConnectorBinding BasicConfigurationObjectEditor.createConnectorComponent(ConfigurationID configurationID, ComponentTypeID typeID, java.lang.String descriptorName, java.lang.String routingUUID)
           
static BasicDeployedComponent BasicUtil.createDeployedComponent(java.lang.String name, ConfigurationID configID, HostID hostID, VMComponentDefnID vmID, ServiceComponentDefnID svcID, ComponentTypeID typeID)
           
 DeployedComponent BasicConfigurationObjectEditor.createDeployedServiceComponent(java.lang.String name, ConfigurationID configurationID, HostID hostId, VMComponentDefnID vmId, ServiceComponentDefnID serviceComponentDefnID, ComponentTypeID serviceComponentTypeID)
           
static BasicDeployedComponent BasicUtil.createDeployedVMComponent(java.lang.String name, ConfigurationID configID, HostID hostID, VMComponentDefnID vmID, ComponentTypeID vmtypeID)
           
 DeployedComponent BasicConfigurationObjectEditor.createDeployedVMComponentx(java.lang.String instanceName, ConfigurationID configurationID, HostID hostId, VMComponentDefnID vmComponentDefnID, ComponentTypeID componentTypeID)
           
 ResourceDescriptor BasicConfigurationObjectEditor.createResourceDescriptor(Configuration configuration, ComponentTypeID typeID, java.lang.String descriptorName)
           
 ResourceDescriptor BasicConfigurationObjectEditor.createResourceDescriptor(ConfigurationID configurationID, ComponentTypeID typeID, java.lang.String descriptorName)
           
 ServiceComponentDefn BasicConfigurationObjectEditor.createServiceComponentDefn(Configuration configuration, ComponentTypeID typeID, java.lang.String componentName)
          Creates a new ServiceComponentDefn for a given Configuration and ProductServiceConfig; also automatically "deploys" the service anywhere that this PSC is already deployed, by creating the necessary DeployedComponents (this will only work if the PSC parameter belongs to the Configuration parameter).
 ServiceComponentDefn BasicConfigurationObjectEditor.createServiceComponentDefn(Configuration configuration, ComponentTypeID typeID, java.lang.String componentName, java.lang.String routingUUID)
           
 ServiceComponentDefn BasicConfigurationObjectEditor.createServiceComponentDefn(ConfigurationID configurationID, ComponentTypeID typeID, java.lang.String componentName)
           
 ServiceComponentDefn BasicConfigurationObjectEditor.createServiceComponentDefn(ConfigurationID configurationID, ComponentTypeID typeID, java.lang.String componentName, java.lang.String routingUUID)
           
 SharedResource BasicConfigurationObjectEditor.createSharedResource(ComponentTypeID typeID, java.lang.String resourceName)
           
 VMComponentDefn BasicConfigurationObjectEditor.createVMComponentDefn(Configuration configuration, HostID hostID, ComponentTypeID typeID, java.lang.String componentName)
           
 VMComponentDefn BasicConfigurationObjectEditor.createVMComponentDefn(ConfigurationID configurationID, HostID hostID, ComponentTypeID typeID, java.lang.String componentName)
           
 java.util.Collection ConfigurationModelContainerImpl.getAllComponentTypeDefinitions(ComponentTypeID typeID)
           
 java.util.Collection BasicConfiguration.getComponentDefnIDs(ComponentTypeID componentTypeID)
          Returns a Collection of ComponentDefnID objects that are of the indicated type.
 ComponentTypeDefn ConfigurationModelContainerImpl.getComponentTypeDefinition(ComponentTypeID typeID, java.lang.String defnName)
          Return a ComponentTypeDefn for a give typeID and defnName.
 java.util.Properties ConfigurationModelContainerImpl.getDefaultPropertyValues(ComponentTypeID componentTypeID)
           
 java.util.Properties ConfigurationModelContainerImpl.getDefaultPropertyValues(java.util.Properties defaultProperties, ComponentTypeID componentTypeID)
           
 ComponentObject BasicConfigurationObjectEditor.setComponentType(ComponentObject t, ComponentTypeID componentType)
           
 ComponentType BasicConfigurationObjectEditor.setParentComponentTypeID(ComponentType t, ComponentTypeID parentID)
           
 void BasicComponentType.setParentComponentTypeID(ComponentTypeID typeID)
           
 ComponentType BasicConfigurationObjectEditor.setSuperComponentTypeID(ComponentType t, ComponentTypeID superID)
           
 void BasicComponentType.setSuperComponentTypeID(ComponentTypeID typeID)
           
 

Constructors in com.metamatrix.common.config.model with parameters of type ComponentTypeID
BasicAuthenticationProvider(ConfigurationID configurationID, AuthenticationProviderID componentID, ComponentTypeID typeID)
           
BasicAuthenticationProviderType(ComponentTypeID id, ComponentTypeID parentID, ComponentTypeID superID, boolean deployable, boolean deprecated, boolean monitored)
           
BasicComponentDefn(ConfigurationID configurationID, ComponentDefnID componentID, ComponentTypeID typeID)
          Construct a BaseComponentDefn by providing the ConfigurationID the component belongs in and the ComponentDefnID that identifies this component and the ComponentType indicating the type of component.
BasicComponentObject(BaseID componentID, ComponentTypeID typeID)
           
BasicComponentTypeDefn(ComponentTypeDefnID id, ComponentTypeID typeID, PropertyDefinition propertyDefinition, boolean deprecated)
          Deprecated. as of 2.0 beta 1, use BasicComponentTypeDefn
BasicComponentTypeDefn(ComponentTypeDefnID id, ComponentTypeID typeID, PropertyDefinition propertyDefinition, boolean deprecated, boolean effectiveImmediately)
           
BasicConfiguration(ConfigurationInfo configInfo, ComponentTypeID typeID)
          Construct a new Configuration using the name and component type;
BasicConnectorBinding(ConfigurationID configurationID, ConnectorBindingID componentID, ComponentTypeID typeID)
           
BasicConnectorBindingType(ComponentTypeID id, ComponentTypeID parentID, ComponentTypeID superID, boolean deployable, boolean deprecated, boolean monitored)
           
BasicDeployedComponent(DeployedComponentID deployedId, ConfigurationID configId, HostID hostId, VMComponentDefnID vmId, ComponentTypeID deployedTypeID)
          Constructor takes a ComponentID, HostID, and Collection of system components to declare a component as being deployed.
BasicDeployedComponent(DeployedComponentID deployedId, ConfigurationID configId, HostID hostId, VMComponentDefnID vmId, ServiceComponentDefnID serviceId, ComponentTypeID deployedTypeID)
           
BasicHost(ConfigurationID configID, HostID hostID, ComponentTypeID typeID)
           
BasicPropDefnAllowedValue(ComponentTypeDefnID typeDefnID, ComponentTypeID typeID, PropDefnAllowedValueID allowedValueID, java.lang.String newValue)
           
BasicResourceComponentType(ComponentTypeID id, ComponentTypeID parentID, ComponentTypeID superID, boolean deployable, boolean deprecated, boolean monitored)
           
BasicResourceDescriptor(ConfigurationID configurationID, ResourceDescriptorID componentID, ComponentTypeID typeID)
           
BasicResourceDescriptor(ConfigurationID configurationID, ResourceDescriptorID componentID, ComponentTypeID typeID, java.util.Properties props)
           
BasicServiceComponentDefn(ConfigurationID configurationID, ServiceComponentDefnID componentID, ComponentTypeID typeID)
           
BasicServiceComponentType(ComponentTypeID id, ComponentTypeID parentID, ComponentTypeID superID, boolean deployable, boolean deprecated, boolean monitored)
           
BasicSharedResource(SharedResourceID resourceID, ComponentTypeID typeID)
           
BasicVMComponentDefn(ConfigurationID configurationID, HostID hostID, VMComponentDefnID componentID, ComponentTypeID typeID)
           
 

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

Methods in com.metamatrix.platform.admin.api with parameters of type ComponentTypeID
 java.util.Collection ConfigurationAdminAPI.getAllComponentTypeDefinitions(ComponentTypeID componentTypeID)
          Returns the all component type definitions for the specified ComponentTypeID.
 ComponentType ConfigurationAdminAPI.getComponentType(ComponentTypeID id)
          Returns a ComponentType for the specified ComponentTypeID
 java.util.Collection ConfigurationAdminAPI.getComponentTypeDefinitions(ComponentTypeID componentTypeID)
          Returns the component type definitions for the specified ComponentTypeID.
 

Uses of ComponentTypeID in com.metamatrix.platform.admin.apiimpl
 

Methods in com.metamatrix.platform.admin.apiimpl with parameters of type ComponentTypeID
 java.util.Collection ConfigurationAdminAPIImpl.getAllComponentTypeDefinitions(ComponentTypeID componentTypeID)
          Returns the all component type definitions for the specified ComponentTypeID.
 ComponentType ConfigurationAdminAPIImpl.getComponentType(ComponentTypeID id)
          Returns a ComponentType for the specified ComponentTypeID
 java.util.Collection ConfigurationAdminAPIImpl.getComponentTypeDefinitions(ComponentTypeID componentTypeID)
          Returns the component type definitions for the specified ComponentTypeID.
 

Uses of ComponentTypeID in com.metamatrix.platform.config.api.service
 

Methods in com.metamatrix.platform.config.api.service with parameters of type ComponentTypeID
 java.util.Collection ConfigurationServiceInterface.getAllComponentTypeDefinitions(ComponentTypeID componentTypeID)
          Returns the all component type definitions for the specified ComponentTypeID.
 ComponentType ConfigurationServiceInterface.getComponentType(ComponentTypeID id)
          Returns a ComponentType for the specified ComponentTypeID
 java.util.Collection ConfigurationServiceInterface.getComponentTypeDefinitions(ComponentTypeID componentTypeID)
          Returns the component type definitions for the specified ComponentTypeID.
 

Uses of ComponentTypeID in com.metamatrix.platform.config.service
 

Methods in com.metamatrix.platform.config.service with parameters of type ComponentTypeID
 java.util.Collection ConfigurationServiceImpl.getAllComponentTypeDefinitions(ComponentTypeID typeID)
           
 ComponentType ConfigurationServiceImpl.getComponentType(ComponentTypeID id)
           
 java.util.Collection ConfigurationServiceImpl.getComponentTypeDefinitions(ComponentTypeID componentTypeID)
           
 java.util.Collection ConfigurationServiceImpl.getComponentTypeDefinitions(ConfigurationModelContainer config, ComponentTypeID componentTypeID)
           
 



Copyright © 2009. All Rights Reserved.