Interface AbstractTransformation

All Superinterfaces:
CMetadata, MdObjectBase, MdObjectBaseUtil, MdObjectBaseXML, PrimaryType, Remote, Root
All Known Subinterfaces:
AbstractJob, ClassifierMap, ColumnHierarchy, FeatureMap, JFJob, Job, Join, MiningResult, Select, SyncStep, Transformation, TransformationActivity, TransformationStep

public interface AbstractTransformation extends PrimaryType
The parent type for transformation types. Transformation types are used to document transformation of data. This includes extraction, transformation, and loading of data, stored procedures, and logical to physical mappings. AbstractTransformation is a supertype that defines common attributes and associations that are shared by metadata types that describe the steps and activities in the transformation process.

This metadata type should not be instantiated. Instead, use the appropriate subtype to represent the steps and activities in a transformation.

Attributes of AbstractTransformation are:

Associations of AbstractTransformation are:

Usage

To create an instance of this AbstractTransformation, use the factory create methods.
Example: create a AbstractTransformation with name "AbstractTransformation_Object", in repository "AAAAAAAA".
 // create a store to contain your objects for this change. If you do not have an existing object
 // or store to use.  You may obtain the store from another object by using Object.getObjectStore().
 MdFactory factory; //where "factory" is a valid MdFactory instance
 MdObjectStore objectStore = factory.createObjectStore();
 AbstractTransformation myObject = (AbstractTransformation) factory.createComplexMetadataObject(objectStore, "AbstractTransformation_Object", MetadataObjects.ABSTRACTTRANSFORMATION, "AAAAAAAA");
 myObject.updateMetadataAll();  // Write object to server
 objectStore.dispose();  // dispose of the object store if it is no longer needed
 

Behavior

  • Attributes and associations for this object can be retrieved by using the methods in MdOMIUtil.
  • When changes are made to the object, either by setting an attribute or adding objects to a particular association, they can be persisted to the metadata server with the updateMetadataAll method.
  • If an object needs to be deleted, the delete method can be used. This will flag the object as being deleted on the client, and will require an update call to persist the change to the server.

Dependencies

This class depends on objects being contained in an MdObjectStore. Object stores should be disposed of when they are no longer needed as this will help clean up memory. Disposing an object store will dispose of all objects contained within that store.

Since:
9.0
  • Field Details

    • ATTRIBUTE_ISACTIVE_NAME

      static final String ATTRIBUTE_ISACTIVE_NAME
      Constant used for the name of the IsActive attribute.

      IsActive: A boolean that indicates whether this process should be executed as part of the overall transformation flow. False means do not execute this process, true means execute this process. The default value is true.

      See Also:
    • ATTRIBUTE_TRANSFORMROLE_NAME

      static final String ATTRIBUTE_TRANSFORMROLE_NAME
      Constant used for the name of the TransformRole attribute.

      TransformRole: A standardized description of the function or context of this transformation.

      See Also:
    • ATTRIBUTE_ISUSERDEFINED_NAME

      static final String ATTRIBUTE_ISUSERDEFINED_NAME
      Constant used for the name of the IsUserDefined attribute.

      IsUserDefined: If this attribute is set to true, the associated source code should be used to perform the transformation. If the attribute is set to false the application may generate the necessary code.

      See Also:
    • ASSOCIATION_COMPUTELOCATIONS_NAME

      static final String ASSOCIATION_COMPUTELOCATIONS_NAME
      Constant used for the name of the ComputeLocations association.

      ComputeLocations: The list of deployed components that may execute this process.  

      See Also:
    • ASSOCIATION_CONDITIONACTIONSETS_NAME

      static final String ASSOCIATION_CONDITIONACTIONSETS_NAME
      Constant used for the name of the ConditionActionSets association.

      ConditionActionSets: The condition action sets for this transformation.  

      See Also:
    • ASSOCIATION_DEPLOYEDCOMPONENTS_NAME

      static final String ASSOCIATION_DEPLOYEDCOMPONENTS_NAME
      Constant used for the name of the DeployedComponents association.

      DeployedComponents: The deployed components that use these processes as part of initialization.  

      See Also:
    • ASSOCIATION_SOURCECODE_NAME

      static final String ASSOCIATION_SOURCECODE_NAME
      Constant used for the name of the SourceCode association.

      SourceCode: The source code for this transformation.  

      See Also:
    • ASSOCIATION_SOURCESPECIFICATIONS_NAME

      static final String ASSOCIATION_SOURCESPECIFICATIONS_NAME
      Constant used for the name of the SourceSpecifications association.

      SourceSpecifications: The objects that describe the sources for this transformation. These are specifications of the sources, not the actual sources themselves.  

      See Also:
    • ASSOCIATION_TARGETSPECIFICATIONS_NAME

      static final String ASSOCIATION_TARGETSPECIFICATIONS_NAME
      Constant used for the name of the TargetSpecifications association.

      TargetSpecifications: The objects that describe the targets for this transformation. These are specifications of the targets, not the actual sources themselves.  

      See Also:
    • ASSOCIATION_TRANSFORMATIONSOURCES_NAME

      static final String ASSOCIATION_TRANSFORMATIONSOURCES_NAME
      Constant used for the name of the TransformationSources association.

      TransformationSources: The set of inputs to the transformation.  

      See Also:
    • ASSOCIATION_CUSTOMIZERS_NAME

      static final String ASSOCIATION_CUSTOMIZERS_NAME
      Constant used for the name of the Customizers association.

      Customizers: The software components that act as a customizer for this transformation. 

      See Also:
    • ASSOCIATION_SUBSTITUTIONVARIABLES_NAME

      static final String ASSOCIATION_SUBSTITUTIONVARIABLES_NAME
      Constant used for the name of the SubstitutionVariables association.

      SubstitutionVariables: The variables associated with this transformation. 

      See Also:
    • ASSOCIATION_TRANSFORMATIONTARGETS_NAME

      static final String ASSOCIATION_TRANSFORMATIONTARGETS_NAME
      Constant used for the name of the TransformationTargets association.

      TransformationTargets: The set of results from the transformation. 

      See Also:
    • ASSOCIATION_TRIGGEREDEVENTS_NAME

      static final String ASSOCIATION_TRIGGEREDEVENTS_NAME
      Constant used for the name of the TriggeredEvents association.

      TriggeredEvents: The events that are triggered by these transforms. 

      See Also:
    • ASSOCIATION_TRIGGERINGEVENTS_NAME

      static final String ASSOCIATION_TRIGGERINGEVENTS_NAME
      Constant used for the name of the TriggeringEvents association.

      TriggeringEvents: The events that trigger this transform. 

      See Also:
  • Method Details

    • initializeRequiredObjects

      void initializeRequiredObjects() throws RemoteException
      (S) This initializes the Required Objects(Roles) which are:
      Specified by:
      initializeRequiredObjects in interface MdObjectBaseUtil
      Specified by:
      initializeRequiredObjects in interface PrimaryType
      Specified by:
      initializeRequiredObjects in interface Root
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
    • initializePredObjects

      void initializePredObjects() throws RemoteException
      (S) Adds the Associated objects to the predObjects which are:
      ComputeLocations
      ConditionActionSets
      DeployedComponents
      SourceCode
      SourceSpecifications
      TargetSpecifications
      TransformationSources
      Specified by:
      initializePredObjects in interface MdObjectBase
      Specified by:
      initializePredObjects in interface PrimaryType
      Specified by:
      initializePredObjects in interface Root
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
    • getIsActive

      int getIsActive() throws RemoteException
      Gets the int value of IsActive
      Returns:
      The IsActive
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
    • getIsActiveState

      int getIsActiveState() throws RemoteException
      Gets the Metadata State of IsActive
      Returns:
      The State.
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
    • getTransformRole

      String getTransformRole() throws RemoteException
      Gets the String value of TransformRole
      Returns:
      The TransformRole
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
    • getTransformRoleState

      int getTransformRoleState() throws RemoteException
      Gets the Metadata State of TransformRole
      Returns:
      The State.
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
    • getTransformRoleMaxLength

      int getTransformRoleMaxLength() throws RemoteException
      Gets the maximum length of TransformRole
      Returns:
      The max size
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
    • getIsUserDefined

      int getIsUserDefined() throws RemoteException
      Gets the int value of IsUserDefined
      Returns:
      The IsUserDefined
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
    • getIsUserDefinedState

      int getIsUserDefinedState() throws RemoteException
      Gets the Metadata State of IsUserDefined
      Returns:
      The State.
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
    • getComputeLocations

      AssociationList getComputeLocations() throws RemoteException, MdException
      Gets the AssociationList of ComputeLocations
      Returns:
      Returns the AssociationList of ComputeLocations which can be of type:
      DeployedComponent
      ConfiguredComponent
      ServiceComponent
      ServerComponent
      LogicalServer
      ServerContext
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getConditionActionSets

      AssociationList getConditionActionSets() throws RemoteException, MdException
      Gets the AssociationList of ConditionActionSets
      Returns:
      Returns the AssociationList of ConditionActionSets which can be of type:
      ConditionActionSet
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getDeployedComponents

      AssociationList getDeployedComponents() throws RemoteException, MdException
      Gets the AssociationList of DeployedComponents
      Returns:
      Returns the AssociationList of DeployedComponents which can be of type:
      DeployedComponent
      ConfiguredComponent
      ServiceComponent
      ServerComponent
      LogicalServer
      ServerContext
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getSourceCodes

      AssociationList getSourceCodes() throws RemoteException, MdException
      Gets the AssociationList of SourceCodes
      Returns:
      Returns the AssociationList of SourceCodes which can be of type:
      Text
      TextStore
      SASCatalogEntry
      File
      ArchiveFile
      ArchiveEntry
      Document
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException
    • getSourceCode

      Text getSourceCode() throws RemoteException, MdException
      Gets the Text for SourceCode
      Returns:
      The Text ( null if not set) of SourceCodewhich can be of type:
      Text
      TextStore
      SASCatalogEntry
      File
      ArchiveFile
      ArchiveEntry
      Document
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getSourceSpecifications

      AssociationList getSourceSpecifications() throws RemoteException, MdException
      Gets the AssociationList of SourceSpecifications
      Returns:
      Returns the AssociationList of SourceSpecifications which can be of type:
      All types
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getTargetSpecifications

      AssociationList getTargetSpecifications() throws RemoteException, MdException
      Gets the AssociationList of TargetSpecifications
      Returns:
      Returns the AssociationList of TargetSpecifications which can be of type:
      All types
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getTransformationSources

      AssociationList getTransformationSources() throws RemoteException, MdException
      Gets the AssociationList of TransformationSources
      Returns:
      Returns the AssociationList of TransformationSources which can be of type:
      All types
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getCustomizers

      AssociationList getCustomizers() throws RemoteException, MdException
      Gets the Association list of Customizers
      Returns:
      The AssociationList of Customizers which can be of type:
      SoftwareComponent
      DeployedComponent
      ConfiguredComponent
      ServiceComponent
      ServerComponent
      LogicalServer
      ServerContext
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getSubstitutionVariables

      AssociationList getSubstitutionVariables() throws RemoteException, MdException
      Gets the Association list of SubstitutionVariables
      Returns:
      The AssociationList of SubstitutionVariables which can be of type:
      Variable
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getTransformationTargets

      AssociationList getTransformationTargets() throws RemoteException, MdException
      Gets the Association list of TransformationTargets
      Returns:
      The AssociationList of TransformationTargets which can be of type:
      All types
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getTriggeredEvents

      AssociationList getTriggeredEvents() throws RemoteException, MdException
      Gets the Association list of TriggeredEvents
      Returns:
      The AssociationList of TriggeredEvents which can be of type:
      Event
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getTriggeringEvents

      AssociationList getTriggeringEvents() throws RemoteException, MdException
      Gets the Association list of TriggeringEvents
      Returns:
      The AssociationList of TriggeringEvents which can be of type:
      Event
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getComputeLocations

      AssociationList getComputeLocations(boolean fGoToServer) throws RemoteException, MdException
      Gets the Associationlist of ComputeLocations
      Parameters:
      fGoToServer - boolean Get the value from the server.
      Returns:
      Returns the AssociationList of ComputeLocations which can be of type:
      DeployedComponent
      ConfiguredComponent
      ServiceComponent
      ServerComponent
      LogicalServer
      ServerContext
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getConditionActionSets

      AssociationList getConditionActionSets(boolean fGoToServer) throws RemoteException, MdException
      Gets the Associationlist of ConditionActionSets
      Parameters:
      fGoToServer - boolean Get the value from the server.
      Returns:
      Returns the AssociationList of ConditionActionSets which can be of type:
      ConditionActionSet
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getDeployedComponents

      AssociationList getDeployedComponents(boolean fGoToServer) throws RemoteException, MdException
      Gets the Associationlist of DeployedComponents
      Parameters:
      fGoToServer - boolean Get the value from the server.
      Returns:
      Returns the AssociationList of DeployedComponents which can be of type:
      DeployedComponent
      ConfiguredComponent
      ServiceComponent
      ServerComponent
      LogicalServer
      ServerContext
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getSourceCodes

      AssociationList getSourceCodes(boolean fGoToServer) throws RemoteException, MdException
      Gets the Associationlist of SourceCodes
      Parameters:
      fGoToServer - boolean Get the value from the server.
      Returns:
      Returns the AssociationList of SourceCodes which can be of type:
      Text
      TextStore
      SASCatalogEntry
      File
      ArchiveFile
      ArchiveEntry
      Document
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getSourceSpecifications

      AssociationList getSourceSpecifications(boolean fGoToServer) throws RemoteException, MdException
      Gets the Associationlist of SourceSpecifications
      Parameters:
      fGoToServer - boolean Get the value from the server.
      Returns:
      Returns the AssociationList of SourceSpecifications which can be of type:
      All types
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getTargetSpecifications

      AssociationList getTargetSpecifications(boolean fGoToServer) throws RemoteException, MdException
      Gets the Associationlist of TargetSpecifications
      Parameters:
      fGoToServer - boolean Get the value from the server.
      Returns:
      Returns the AssociationList of TargetSpecifications which can be of type:
      All types
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getTransformationSources

      AssociationList getTransformationSources(boolean fGoToServer) throws RemoteException, MdException
      Gets the Associationlist of TransformationSources
      Parameters:
      fGoToServer - boolean Get the value from the server.
      Returns:
      Returns the AssociationList of TransformationSources which can be of type:
      All types
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getCustomizers

      AssociationList getCustomizers(boolean fGoToServer) throws RemoteException, MdException
      Gets the Associationlist of Customizers
      Parameters:
      fGoToServer - boolean Get the value from the server.
      Returns:
      Returns the Customizers which can be of type:
      SoftwareComponent
      DeployedComponent
      ConfiguredComponent
      ServiceComponent
      ServerComponent
      LogicalServer
      ServerContext
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getSubstitutionVariables

      AssociationList getSubstitutionVariables(boolean fGoToServer) throws RemoteException, MdException
      Gets the Associationlist of SubstitutionVariables
      Parameters:
      fGoToServer - boolean Get the value from the server.
      Returns:
      Returns the SubstitutionVariables which can be of type:
      Variable
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getTransformationTargets

      AssociationList getTransformationTargets(boolean fGoToServer) throws RemoteException, MdException
      Gets the Associationlist of TransformationTargets
      Parameters:
      fGoToServer - boolean Get the value from the server.
      Returns:
      Returns the TransformationTargets which can be of type:
      All types
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getTriggeredEvents

      AssociationList getTriggeredEvents(boolean fGoToServer) throws RemoteException, MdException
      Gets the Associationlist of TriggeredEvents
      Parameters:
      fGoToServer - boolean Get the value from the server.
      Returns:
      Returns the TriggeredEvents which can be of type:
      Event
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getTriggeringEvents

      AssociationList getTriggeringEvents(boolean fGoToServer) throws RemoteException, MdException
      Gets the Associationlist of TriggeringEvents
      Parameters:
      fGoToServer - boolean Get the value from the server.
      Returns:
      Returns the TriggeringEvents which can be of type:
      Event
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • setIsActive

      void setIsActive(int inIsActive) throws RemoteException
      Sets the IsActive value and sets the state to MetadataState.LOCAL.
      Parameters:
      inIsActive - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setIsActive

      void setIsActive(int inIsActive, int state) throws RemoteException
      Sets the IsActive Metadata State.
      Parameters:
      inIsActive - int
      state - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setIsActive

      void setIsActive(String inIsActive) throws RemoteException
      Sets the IsActive value and sets the state to MetadataState.LOCAL.
      Parameters:
      inIsActive - String
      Throws:
      RemoteException - If error communicating with remote object.
    • setIsActive

      void setIsActive(String inIsActive, int state) throws RemoteException
      Sets the IsActive value and Metadata State.
      Parameters:
      inIsActive - String
      state - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setIsActiveState

      void setIsActiveState(int state) throws RemoteException
      Sets the Metadata State of IsActive.
      Parameters:
      state - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setTransformRole

      void setTransformRole(String inTransformRole) throws RemoteException
      Sets the TransformRole value and sets the state to MetadataState.LOCAL.
      Parameters:
      inTransformRole - String
      Throws:
      RemoteException - If error communicating with remote object.
    • setTransformRole

      void setTransformRole(String inTransformRole, int state) throws RemoteException
      Sets the TransformRole Metadata State.
      Parameters:
      inTransformRole - String
      state - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setTransformRoleState

      void setTransformRoleState(int state) throws RemoteException
      Sets the Metadata State of TransformRole.
      Parameters:
      state - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setIsUserDefined

      void setIsUserDefined(int inIsUserDefined) throws RemoteException
      Sets the IsUserDefined value and sets the state to MetadataState.LOCAL.
      Parameters:
      inIsUserDefined - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setIsUserDefined

      void setIsUserDefined(int inIsUserDefined, int state) throws RemoteException
      Sets the IsUserDefined Metadata State.
      Parameters:
      inIsUserDefined - int
      state - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setIsUserDefined

      void setIsUserDefined(String inIsUserDefined) throws RemoteException
      Sets the IsUserDefined value and sets the state to MetadataState.LOCAL.
      Parameters:
      inIsUserDefined - String
      Throws:
      RemoteException - If error communicating with remote object.
    • setIsUserDefined

      void setIsUserDefined(String inIsUserDefined, int state) throws RemoteException
      Sets the IsUserDefined value and Metadata State.
      Parameters:
      inIsUserDefined - String
      state - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setIsUserDefinedState

      void setIsUserDefinedState(int state) throws RemoteException
      Sets the Metadata State of IsUserDefined.
      Parameters:
      state - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setComputeLocations

      void setComputeLocations(AssociationList list) throws RemoteException
      Sets the ComputeLocations list to be list. Objects of which can be of type:
      DeployedComponent
      ConfiguredComponent
      ServiceComponent
      ServerComponent
      LogicalServer
      ServerContext
      Parameters:
      list - AssociationList
      Throws:
      RemoteException - If error communicating with remote object.
    • setComputeLocations

      void setComputeLocations(AssociationList inObjects, int state) throws RemoteException
      Sets the entire AssociationList to match the passed in Vector, sets the state of the AssociationList
      Parameters:
      inObjects - AssociationList
      state - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setConditionActionSets

      void setConditionActionSets(AssociationList list) throws RemoteException
      Sets the ConditionActionSets list to be list. Objects of which can be of type:
      ConditionActionSet
      Parameters:
      list - AssociationList
      Throws:
      RemoteException - If error communicating with remote object.
    • setConditionActionSets

      void setConditionActionSets(AssociationList inObjects, int state) throws RemoteException
      Sets the entire AssociationList to match the passed in Vector, sets the state of the AssociationList
      Parameters:
      inObjects - AssociationList
      state - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setDeployedComponents

      void setDeployedComponents(AssociationList list) throws RemoteException
      Sets the DeployedComponents list to be list. Objects of which can be of type:
      DeployedComponent
      ConfiguredComponent
      ServiceComponent
      ServerComponent
      LogicalServer
      ServerContext
      Parameters:
      list - AssociationList
      Throws:
      RemoteException - If error communicating with remote object.
    • setDeployedComponents

      void setDeployedComponents(AssociationList inObjects, int state) throws RemoteException
      Sets the entire AssociationList to match the passed in Vector, sets the state of the AssociationList
      Parameters:
      inObjects - AssociationList
      state - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setSourceCodes

      void setSourceCodes(AssociationList list) throws RemoteException
      Sets the SourceCodes list to be list. Object of which can be of type:
      Text
      TextStore
      SASCatalogEntry
      File
      ArchiveFile
      ArchiveEntry
      Document
      Parameters:
      list - AssociationList
      Throws:
      RemoteException - If error communicating with remote object.
    • setSourceCodes

      void setSourceCodes(AssociationList list, int state) throws RemoteException
      Sets the SourceCodes list to be list. Object of which can be of type:
      Text
      TextStore
      SASCatalogEntry
      File
      ArchiveFile
      ArchiveEntry
      Document
      Parameters:
      list - AssociationList
      state - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setSourceCode

      void setSourceCode(Text inObject) throws RemoteException
      Sets the SourceCodes list 0th element to be inObject.
      Parameters:
      inObject - Text
      Throws:
      RemoteException - If error communicating with remote object.
    • setSourceSpecifications

      void setSourceSpecifications(AssociationList list) throws RemoteException
      Sets the SourceSpecifications list to be list. Objects of which can be of type:
      All types
      Parameters:
      list - AssociationList
      Throws:
      RemoteException - If error communicating with remote object.
    • setSourceSpecifications

      void setSourceSpecifications(AssociationList inObjects, int state) throws RemoteException
      Sets the entire AssociationList to match the passed in Vector, sets the state of the AssociationList
      Parameters:
      inObjects - AssociationList
      state - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setTargetSpecifications

      void setTargetSpecifications(AssociationList list) throws RemoteException
      Sets the TargetSpecifications list to be list. Objects of which can be of type:
      All types
      Parameters:
      list - AssociationList
      Throws:
      RemoteException - If error communicating with remote object.
    • setTargetSpecifications

      void setTargetSpecifications(AssociationList inObjects, int state) throws RemoteException
      Sets the entire AssociationList to match the passed in Vector, sets the state of the AssociationList
      Parameters:
      inObjects - AssociationList
      state - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setTransformationSources

      void setTransformationSources(AssociationList list) throws RemoteException
      Sets the TransformationSources list to be list. Objects of which can be of type:
      All types
      Parameters:
      list - AssociationList
      Throws:
      RemoteException - If error communicating with remote object.
    • setTransformationSources

      void setTransformationSources(AssociationList inObjects, int state) throws RemoteException
      Sets the entire AssociationList to match the passed in Vector, sets the state of the AssociationList
      Parameters:
      inObjects - AssociationList
      state - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setCustomizers

      void setCustomizers(AssociationList list) throws RemoteException
      Sets the Customizers list to be list. Objects of which can be of type:
      SoftwareComponent
      DeployedComponent
      ConfiguredComponent
      ServiceComponent
      ServerComponent
      LogicalServer
      ServerContext
      Parameters:
      list - AssociationList
      Throws:
      RemoteException - If error communicating with remote object.
    • setCustomizers

      void setCustomizers(AssociationList inObjects, int state) throws RemoteException
      Sets the entire Customizers list to match the passed in AssociationList, sets the state of the Customizers
      Parameters:
      inObjects - AssociationList
      state - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setSubstitutionVariables

      void setSubstitutionVariables(AssociationList list) throws RemoteException
      Sets the SubstitutionVariables list to be list. Objects of which can be of type:
      Variable
      Parameters:
      list - AssociationList
      Throws:
      RemoteException - If error communicating with remote object.
    • setSubstitutionVariables

      void setSubstitutionVariables(AssociationList inObjects, int state) throws RemoteException
      Sets the entire SubstitutionVariables list to match the passed in AssociationList, sets the state of the SubstitutionVariables
      Parameters:
      inObjects - AssociationList
      state - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setTransformationTargets

      void setTransformationTargets(AssociationList list) throws RemoteException
      Sets the TransformationTargets list to be list. Objects of which can be of type:
      All types
      Parameters:
      list - AssociationList
      Throws:
      RemoteException - If error communicating with remote object.
    • setTransformationTargets

      void setTransformationTargets(AssociationList inObjects, int state) throws RemoteException
      Sets the entire TransformationTargets list to match the passed in AssociationList, sets the state of the TransformationTargets
      Parameters:
      inObjects - AssociationList
      state - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setTriggeredEvents

      void setTriggeredEvents(AssociationList list) throws RemoteException
      Sets the TriggeredEvents list to be list. Objects of which can be of type:
      Event
      Parameters:
      list - AssociationList
      Throws:
      RemoteException - If error communicating with remote object.
    • setTriggeredEvents

      void setTriggeredEvents(AssociationList inObjects, int state) throws RemoteException
      Sets the entire TriggeredEvents list to match the passed in AssociationList, sets the state of the TriggeredEvents
      Parameters:
      inObjects - AssociationList
      state - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setTriggeringEvents

      void setTriggeringEvents(AssociationList list) throws RemoteException
      Sets the TriggeringEvents list to be list. Objects of which can be of type:
      Event
      Parameters:
      list - AssociationList
      Throws:
      RemoteException - If error communicating with remote object.
    • setTriggeringEvents

      void setTriggeringEvents(AssociationList inObjects, int state) throws RemoteException
      Sets the entire TriggeringEvents list to match the passed in AssociationList, sets the state of the TriggeringEvents
      Parameters:
      inObjects - AssociationList
      state - int
      Throws:
      RemoteException - If error communicating with remote object.