Interface Root

All Superinterfaces:
CMetadata, MdObjectBase, MdObjectBaseUtil, MdObjectBaseXML, Remote
All Known Subinterfaces:
AbstractExtension, AbstractJob, AbstractPrompt, AbstractProperty, AbstractTransformation, AccessControl, AccessControlEntry, AccessControlTemplate, Action, Aggregation, AnalyticColumn, AnalyticContext, AnalyticTable, ApplicationAction, ArchiveEntry, ArchiveFile, AssociationProperty, AttributeProperty, AuthenticationDomain, CalculatedMeasure, CalculatedMember, Change, Classifier, ClassifierMap, Column, ColumnHierarchy, ColumnRange, COMConnection, Condition, ConditionActionSet, ConditionalPrecedence, ConfiguredComponent, Connection, ContentLocation, ContentType, Cube, CustomAssociation, DatabaseCatalog, DatabaseSchema, DataSourceName, DataTable, DeployedComponent, DeployedDataPackage, Device, DeviceType, Dimension, Directory, Document, Email, Event, Extension, ExternalIdentity, ExternalTable, FavoritesContainer, Feature, FeatureMap, File, FitStatistic, ForeignKey, GlobalFormula, Group, GroupByClause, HavingClause, Hierarchy, HierarchyLevel, Identity, IdentityGroup, Index, InternalLogin, ITChannel, ITContentSubscriber, ITEventSubscriber, ITFilter, ITSubscriber, JFJob, Job, Join, JoinTable, Key, KeyAssociation, Keyword, Level, LocalizedResource, LocalizedType, Location, LogicalColumn, LogicalServer, Login, Machine, Measure, Memory, MiningResult, NamedService, NamedSet, NumericExtension, OLAPProperty, OLAPSchema, OnClause, OpenClientConnection, OrderByClause, Permission, PermissionCondition, Person, Phone, PhysicalTable, PrimaryType, Prompt, PromptGroup, Property, PropertyGroup, PropertySet, PropertyType, Prototype, PrototypeProperty, PSColumnLayoutComponent, PSLayoutComponent, PSPortalPage, PSPortalProfile, PSPortlet, QueryClause, QueryTable, RelationalSchema, RelationalTable, Report, ResponsibleParty, Role, RowSelector, SASCatalog, SASCatalogEntry, SASClientConnection, SASFileRef, SASLibrary, SASLicense, SASPassword, Search, SecondaryType, SecuredLibrary, SecuredTable, SecurityRule, SecurityRuleScheme, SecurityTypeContainmentRule, Select, ServerComponent, ServerContext, ServiceComponent, ServiceType, SharedDimension, SoftwareComponent, StepPrecedence, Stream, SXLEMap, SyncStep, TableCollection, Target, TCPIPConnection, Text, TextStore, Timestamp, Transformation, TransformationActivity, TransformationStep, Tree, TSNameObject, TSNamespace, TypeDefinition, UniqueKey, UnitofTime, Variable, WhereClause, WorkTable, XPath

public interface Root extends CMetadata
This is an abstract type that is the supertype for all of the other metadata types.

Attributes of Root are:

Associations of Root are:

Usage

To create an instance of this Root, use the factory create methods.
Example: create a Root with name "Root_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();
 Root myObject = (Root) factory.createComplexMetadataObject(objectStore, "Root_Object", MetadataObjects.ROOT, "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_LOCKEDBY_NAME

      static final String ATTRIBUTE_LOCKEDBY_NAME
      Constant used for the name of the LockedBy attribute.

      LockedBy: This attribute is used by Change management.

      See Also:
    • ATTRIBUTE_CHANGESTATE_NAME

      static final String ATTRIBUTE_CHANGESTATE_NAME
      Constant used for the name of the ChangeState attribute.

      ChangeState: This attribute is used by Change management.

      See Also:
    • ATTRIBUTE_USAGEVERSION_NAME

      static final String ATTRIBUTE_USAGEVERSION_NAME
      Constant used for the name of the UsageVersion attribute.

      UsageVersion: All objects that participate in the SAS type dictionary must implement a standard usage version. The usage version is simply a version number persisted with the object and rules for interpreting those version numbers. The usage version determines the level of compatibility between the persisted object and any applications that may access the object.

      See Also:
    • ASSOCIATION_CHANGES_NAME

      static final String ASSOCIATION_CHANGES_NAME
      Constant used for the name of the Changes association.

      Changes: This association is used by the change management facility to indicate the objects included in a given change. The change management facility is used exclusively by SAS Data Integration Studio.  

      See Also:
    • ASSOCIATION_CUSTOMASSOCIATIONS_NAME

      static final String ASSOCIATION_CUSTOMASSOCIATIONS_NAME
      Constant used for the name of the CustomAssociations association.

      CustomAssociations: The custom associations related to this owning object.  

      See Also:
    • ASSOCIATION_KEYWORDS_NAME

      static final String ASSOCIATION_KEYWORDS_NAME
      Constant used for the name of the Keywords association.

      Keywords: The keywords associated with this object.  

      See Also:
    • ASSOCIATION_NOTES_NAME

      static final String ASSOCIATION_NOTES_NAME
      Constant used for the name of the Notes association.

      Notes: The list of notes associated with the object.  

      See Also:
    • ASSOCIATION_PROMPTS_NAME

      static final String ASSOCIATION_PROMPTS_NAME
      Constant used for the name of the Prompts association.

      Prompts: The prompts or prompt group for this object.  

      See Also:
    • ASSOCIATION_REFERENCEDOBJECTS_NAME

      static final String ASSOCIATION_REFERENCEDOBJECTS_NAME
      Constant used for the name of the ReferencedObjects association.

      ReferencedObjects: The object(s) that are associated to the owning object using this custom association.  

      See Also:
    • ASSOCIATION_TARGETTRANSFORMATIONS_NAME

      static final String ASSOCIATION_TARGETTRANSFORMATIONS_NAME
      Constant used for the name of the TargetTransformations association.

      TargetTransformations: The set of transformation activities that create this result.  

      See Also:
    • ASSOCIATION_TSOBJECTNAMESPACE_NAME

      static final String ASSOCIATION_TSOBJECTNAMESPACE_NAME
      Constant used for the name of the TSObjectNamespace association.

      TSObjectNamespace: Table server namespace for this object.  

      See Also:
    • ASSOCIATION_USINGPROTOTYPE_NAME

      static final String ASSOCIATION_USINGPROTOTYPE_NAME
      Constant used for the name of the UsingPrototype association.

      UsingPrototype: The prototype for this object. This must be a Prototype object, or an object of the SAME metadata type as this object.  

      See Also:
    • ASSOCIATION_ACCESSCONTROLS_NAME

      static final String ASSOCIATION_ACCESSCONTROLS_NAME
      Constant used for the name of the AccessControls association.

      AccessControls: The access controls for this object. 

      See Also:
    • ASSOCIATION_DOCUMENTS_NAME

      static final String ASSOCIATION_DOCUMENTS_NAME
      Constant used for the name of the Documents association.

      Documents: The documents that are associated with this object. 

      See Also:
    • ASSOCIATION_EXTENSIONS_NAME

      static final String ASSOCIATION_EXTENSIONS_NAME
      Constant used for the name of the Extensions association.

      Extensions: The object the extension is associated with. An extension can be associated with any kind of object. 

      See Also:
    • ASSOCIATION_EXTERNALIDENTITIES_NAME

      static final String ASSOCIATION_EXTERNALIDENTITIES_NAME
      Constant used for the name of the ExternalIdentities association.

      ExternalIdentities: The external identities for this object in other contexts. 

      See Also:
    • ASSOCIATION_GROUPS_NAME

      static final String ASSOCIATION_GROUPS_NAME
      Constant used for the name of the Groups association.

      Groups: The groups that have this object as a member. 

      See Also:
    • ASSOCIATION_IMPLEMENTORS_NAME

      static final String ASSOCIATION_IMPLEMENTORS_NAME
      Constant used for the name of the Implementors association.

      Implementors: The software components that utilize the metadata in this object. 

      See Also:
    • ASSOCIATION_LOCALIZEDATTRIBUTES_NAME

      static final String ASSOCIATION_LOCALIZEDATTRIBUTES_NAME
      Constant used for the name of the LocalizedAttributes association.

      LocalizedAttributes: Lists localized attributes that are defined for this object. A localized attribute is modeled with a Property object that has the same Name= value as the attribute that it localizes, and has the Role= attribute set to "Override". 

      See Also:
    • ASSOCIATION_PRIMARYPROPERTYGROUP_NAME

      static final String ASSOCIATION_PRIMARYPROPERTYGROUP_NAME
      Constant used for the name of the PrimaryPropertyGroup association.

      PrimaryPropertyGroup: Any object may have one PrimaryPropertyGroup. PrimaryPropertyGroup is the starting place for a hierarchy of property objects, often used to help drive a UI. The properties contained in this group are not actual values, instead they represent the set of possible values or options for the associated object. For more information, see PropertyGroup. 

      See Also:
    • ASSOCIATION_PROPERTIES_NAME

      static final String ASSOCIATION_PROPERTIES_NAME
      Constant used for the name of the Properties association.

      Properties: Lists the default properties for this object. This association should contain a complete set of properties for "default" usage. If there are no default properties, then this association should not be used. Properties that are relevant only for a specific context should be grouped using a PropertySet object. For more information, see Property.  

      See Also:
    • ASSOCIATION_PROPERTYSETS_NAME

      static final String ASSOCIATION_PROPERTYSETS_NAME
      Constant used for the name of the PropertySets association.

      PropertySets: Any object may have one or more PropertySet objects. A PropertySet contains a complete group of properties used in a particular context. For more information, see PropertySet

      See Also:
    • ASSOCIATION_RESPONSIBLEPARTIES_NAME

      static final String ASSOCIATION_RESPONSIBLEPARTIES_NAME
      Constant used for the name of the ResponsibleParties association.

      ResponsibleParties: The list of responsibilities that have been assigned for this object. In order to determine the identities who have been assigned to a particular responsibility, the application writer would need to traverse the Persons association. 

      See Also:
    • ASSOCIATION_SOURCETRANSFORMATIONS_NAME

      static final String ASSOCIATION_SOURCETRANSFORMATIONS_NAME
      Constant used for the name of the SourceTransformations association.

      SourceTransformations: The set of transformations that use this input. 

      See Also:
    • ASSOCIATION_SPECSOURCETRANSFORMATIONS_NAME

      static final String ASSOCIATION_SPECSOURCETRANSFORMATIONS_NAME
      Constant used for the name of the SpecSourceTransformations association.

      SpecSourceTransformations: The transformation that uses this specification as a source. 

      See Also:
    • ASSOCIATION_SPECTARGETTRANSFORMATIONS_NAME

      static final String ASSOCIATION_SPECTARGETTRANSFORMATIONS_NAME
      Constant used for the name of the SpecTargetTransformations association.

      SpecTargetTransformations: The transformation that uses this specification as a target. 

      See Also:
    • ASSOCIATION_TIMESTAMPS_NAME

      static final String ASSOCIATION_TIMESTAMPS_NAME
      Constant used for the name of the Timestamps association.

      Timestamps: The timestamps associated with this object. 

      See Also:
    • ASSOCIATION_TREES_NAME

      static final String ASSOCIATION_TREES_NAME
      Constant used for the name of the Trees association.

      Trees: The trees that have this object as a member. 

      See Also:
    • ASSOCIATION_USEDBYPROTOTYPES_NAME

      static final String ASSOCIATION_USEDBYPROTOTYPES_NAME
      Constant used for the name of the UsedByPrototypes association.

      UsedByPrototypes: The objects that use this object as a prototype. 

      See Also:
    • ASSOCIATION_VARIABLES_NAME

      static final String ASSOCIATION_VARIABLES_NAME
      Constant used for the name of the Variables association.

      Variables: The variables associated with this object. 

      See Also:
  • Method Details

    • initializeRequiredObjects

      void initializeRequiredObjects() throws RemoteException
      (S) This initializes the Required Objects(Roles) which are:
      Specified by:
      initializeRequiredObjects in interface MdObjectBaseUtil
      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:
      Changes
      CustomAssociations
      Keywords
      Notes
      Prompts
      ReferencedObjects
      TargetTransformations
      TSObjectNamespace
      UsingPrototype
      Specified by:
      initializePredObjects in interface MdObjectBase
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
    • getLockedBy

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

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

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

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

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

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

      double getUsageVersion() throws RemoteException
      Gets the double value of UsageVersion
      Returns:
      The UsageVersion
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
    • getUsageVersionState

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

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

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

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

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

      AssociationList getPrompts() throws RemoteException, MdException
      Gets the AssociationList of Prompts
      Returns:
      Returns the AssociationList of Prompts which can be of type:
      AbstractPrompt
      Prompt
      PromptGroup
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getReferencedObjects

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

      AssociationList getTargetTransformations() throws RemoteException, MdException
      Gets the AssociationList of TargetTransformations
      Returns:
      Returns the AssociationList of TargetTransformations which can be of type:
      AbstractTransformation
      TransformationStep
      SyncStep
      TransformationActivity
      FeatureMap
      ColumnHierarchy
      Transformation
      ClassifierMap
      Select
      Join
      AbstractJob
      Job
      JFJob
      MiningResult
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getTSObjectNamespaces

      AssociationList getTSObjectNamespaces() throws RemoteException, MdException
      Gets the AssociationList of TSObjectNamespaces
      Returns:
      Returns the AssociationList of TSObjectNamespaces which can be of type:
      TSNamespace
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException
    • getTSObjectNamespace

      TSNamespace getTSObjectNamespace() throws RemoteException, MdException
      Gets the TSNamespace for TSObjectNamespace
      Returns:
      The TSNamespace ( null if not set) of TSObjectNamespacewhich can be of type:
      TSNamespace
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getUsingPrototypes

      AssociationList getUsingPrototypes() throws RemoteException, MdException
      Gets the AssociationList of UsingPrototypes
      Returns:
      Returns the AssociationList of UsingPrototypes which can be of type:
      All types
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException
    • getUsingPrototype

      Root getUsingPrototype() throws RemoteException, MdException
      Gets the Root for UsingPrototype
      Returns:
      The Root ( null if not set) of UsingPrototypewhich 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.
    • getAccessControls

      AssociationList getAccessControls() throws RemoteException, MdException
      Gets the Association list of AccessControls
      Returns:
      The AssociationList of AccessControls which can be of type:
      AccessControl
      AccessControlEntry
      AccessControlTemplate
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getDocuments

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

      AssociationList getExtensions() throws RemoteException, MdException
      Gets the Association list of Extensions
      Returns:
      The AssociationList of Extensions which can be of type:
      AbstractExtension
      Extension
      NumericExtension
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getExternalIdentities

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

      AssociationList getGroups() throws RemoteException, MdException
      Gets the Association list of Groups
      Returns:
      The AssociationList of Groups which can be of type:
      Group
      SXLEMap
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getImplementors

      AssociationList getImplementors() throws RemoteException, MdException
      Gets the Association list of Implementors
      Returns:
      The AssociationList of Implementors 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.
    • getLocalizedAttributes

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

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

      PropertyGroup getPrimaryPropertyGroup() throws RemoteException, MdException
      Gets the PropertyGroup for PrimaryPropertyGroup
      Returns:
      The PropertyGroup ( null if not set ) of PrimaryPropertyGroup which can be of type:
      PropertyGroup
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getProperties

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

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

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

      AssociationList getSourceTransformations() throws RemoteException, MdException
      Gets the Association list of SourceTransformations
      Returns:
      The AssociationList of SourceTransformations which can be of type:
      AbstractTransformation
      TransformationStep
      SyncStep
      TransformationActivity
      FeatureMap
      ColumnHierarchy
      Transformation
      ClassifierMap
      Select
      Join
      AbstractJob
      Job
      JFJob
      MiningResult
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getSpecSourceTransformations

      AssociationList getSpecSourceTransformations() throws RemoteException, MdException
      Gets the Association list of SpecSourceTransformations
      Returns:
      The AssociationList of SpecSourceTransformations which can be of type:
      AbstractTransformation
      TransformationStep
      SyncStep
      TransformationActivity
      FeatureMap
      ColumnHierarchy
      Transformation
      ClassifierMap
      Select
      Join
      AbstractJob
      Job
      JFJob
      MiningResult
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getSpecTargetTransformations

      AssociationList getSpecTargetTransformations() throws RemoteException, MdException
      Gets the Association list of SpecTargetTransformations
      Returns:
      The AssociationList of SpecTargetTransformations which can be of type:
      AbstractTransformation
      TransformationStep
      SyncStep
      TransformationActivity
      FeatureMap
      ColumnHierarchy
      Transformation
      ClassifierMap
      Select
      Join
      AbstractJob
      Job
      JFJob
      MiningResult
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getTimestamps

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

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

      AssociationList getUsedByPrototypes() throws RemoteException, MdException
      Gets the Association list of UsedByPrototypes
      Returns:
      The AssociationList of UsedByPrototypes 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.
    • getVariables

      AssociationList getVariables() throws RemoteException, MdException
      Gets the Association list of Variables
      Returns:
      The AssociationList of Variables 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.
    • getChanges

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

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

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

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

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

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

      AssociationList getTargetTransformations(boolean fGoToServer) throws RemoteException, MdException
      Gets the Associationlist of TargetTransformations
      Parameters:
      fGoToServer - boolean Get the value from the server.
      Returns:
      Returns the AssociationList of TargetTransformations which can be of type:
      AbstractTransformation
      TransformationStep
      SyncStep
      TransformationActivity
      FeatureMap
      ColumnHierarchy
      Transformation
      ClassifierMap
      Select
      Join
      AbstractJob
      Job
      JFJob
      MiningResult
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getTSObjectNamespaces

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

      AssociationList getUsingPrototypes(boolean fGoToServer) throws RemoteException, MdException
      Gets the Associationlist of UsingPrototypes
      Parameters:
      fGoToServer - boolean Get the value from the server.
      Returns:
      Returns the AssociationList of UsingPrototypes 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.
    • getAccessControls

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

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

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

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

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

      AssociationList getImplementors(boolean fGoToServer) throws RemoteException, MdException
      Gets the Associationlist of Implementors
      Parameters:
      fGoToServer - boolean Get the value from the server.
      Returns:
      Returns the Implementors 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.
    • getLocalizedAttributes

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

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

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

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

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

      AssociationList getSourceTransformations(boolean fGoToServer) throws RemoteException, MdException
      Gets the Associationlist of SourceTransformations
      Parameters:
      fGoToServer - boolean Get the value from the server.
      Returns:
      Returns the SourceTransformations which can be of type:
      AbstractTransformation
      TransformationStep
      SyncStep
      TransformationActivity
      FeatureMap
      ColumnHierarchy
      Transformation
      ClassifierMap
      Select
      Join
      AbstractJob
      Job
      JFJob
      MiningResult
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getSpecSourceTransformations

      AssociationList getSpecSourceTransformations(boolean fGoToServer) throws RemoteException, MdException
      Gets the Associationlist of SpecSourceTransformations
      Parameters:
      fGoToServer - boolean Get the value from the server.
      Returns:
      Returns the SpecSourceTransformations which can be of type:
      AbstractTransformation
      TransformationStep
      SyncStep
      TransformationActivity
      FeatureMap
      ColumnHierarchy
      Transformation
      ClassifierMap
      Select
      Join
      AbstractJob
      Job
      JFJob
      MiningResult
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getSpecTargetTransformations

      AssociationList getSpecTargetTransformations(boolean fGoToServer) throws RemoteException, MdException
      Gets the Associationlist of SpecTargetTransformations
      Parameters:
      fGoToServer - boolean Get the value from the server.
      Returns:
      Returns the SpecTargetTransformations which can be of type:
      AbstractTransformation
      TransformationStep
      SyncStep
      TransformationActivity
      FeatureMap
      ColumnHierarchy
      Transformation
      ClassifierMap
      Select
      Join
      AbstractJob
      Job
      JFJob
      MiningResult
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getTimestamps

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

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

      AssociationList getUsedByPrototypes(boolean fGoToServer) throws RemoteException, MdException
      Gets the Associationlist of UsedByPrototypes
      Parameters:
      fGoToServer - boolean Get the value from the server.
      Returns:
      Returns the UsedByPrototypes 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.
    • getVariables

      AssociationList getVariables(boolean fGoToServer) throws RemoteException, MdException
      Gets the Associationlist of Variables
      Parameters:
      fGoToServer - boolean Get the value from the server.
      Returns:
      Returns the Variables 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.
    • setLockedBy

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

      void setLockedBy(String inLockedBy, int state) throws RemoteException
      Sets the LockedBy Metadata State.
      Parameters:
      inLockedBy - String
      state - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setLockedByState

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

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

      void setChangeState(String inChangeState, int state) throws RemoteException
      Sets the ChangeState Metadata State.
      Parameters:
      inChangeState - String
      state - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setChangeStateState

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

      void setUsageVersion(double inUsageVersion) throws RemoteException
      Sets the UsageVersion value and sets the state to MetadataState.LOCAL.
      Parameters:
      inUsageVersion - double
      Throws:
      RemoteException - If error communicating with remote object.
    • setUsageVersion

      void setUsageVersion(double inUsageVersion, int state) throws RemoteException
      Sets the UsageVersion Metadata State.
      Parameters:
      inUsageVersion - double
      state - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setUsageVersion

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

      void setUsageVersion(String inUsageVersion, int state) throws RemoteException
      Sets the UsageVersion value and Metadata State.
      Parameters:
      inUsageVersion - String
      state - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setUsageVersionState

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

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

      void setChanges(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.
    • setCustomAssociations

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

      void setCustomAssociations(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.
    • setKeywords

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

      void setKeywords(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.
    • setNotes

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

      void setNotes(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.
    • setPrompts

      void setPrompts(AssociationList list) throws RemoteException
      Sets the Prompts list to be list. Objects of which can be of type:
      AbstractPrompt
      Prompt
      PromptGroup
      Parameters:
      list - AssociationList
      Throws:
      RemoteException - If error communicating with remote object.
    • setPrompts

      void setPrompts(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.
    • setReferencedObjects

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

      void setReferencedObjects(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.
    • setTargetTransformations

      void setTargetTransformations(AssociationList list) throws RemoteException
      Parameters:
      list - AssociationList
      Throws:
      RemoteException - If error communicating with remote object.
    • setTargetTransformations

      void setTargetTransformations(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.
    • setTSObjectNamespaces

      void setTSObjectNamespaces(AssociationList list) throws RemoteException
      Sets the TSObjectNamespaces list to be list. Object of which can be of type:
      TSNamespace
      Parameters:
      list - AssociationList
      Throws:
      RemoteException - If error communicating with remote object.
    • setTSObjectNamespaces

      void setTSObjectNamespaces(AssociationList list, int state) throws RemoteException
      Sets the TSObjectNamespaces list to be list. Object of which can be of type:
      TSNamespace
      Parameters:
      list - AssociationList
      state - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setTSObjectNamespace

      void setTSObjectNamespace(TSNamespace inObject) throws RemoteException
      Sets the TSObjectNamespaces list 0th element to be inObject.
      Parameters:
      inObject - TSNamespace
      Throws:
      RemoteException - If error communicating with remote object.
    • setUsingPrototypes

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

      void setUsingPrototypes(AssociationList list, int state) throws RemoteException
      Sets the UsingPrototypes list to be list. Object of which can be of type:
      All types
      Parameters:
      list - AssociationList
      state - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setUsingPrototype

      void setUsingPrototype(Root inObject) throws RemoteException
      Sets the UsingPrototypes list 0th element to be inObject.
      Parameters:
      inObject - Root
      Throws:
      RemoteException - If error communicating with remote object.
    • setAccessControls

      void setAccessControls(AssociationList list) throws RemoteException
      Sets the AccessControls list to be list. Objects of which can be of type:
      AccessControl
      AccessControlEntry
      AccessControlTemplate
      Parameters:
      list - AssociationList
      Throws:
      RemoteException - If error communicating with remote object.
    • setAccessControls

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

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

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

      void setExtensions(AssociationList list) throws RemoteException
      Sets the Extensions list to be list. Objects of which can be of type:
      AbstractExtension
      Extension
      NumericExtension
      Parameters:
      list - AssociationList
      Throws:
      RemoteException - If error communicating with remote object.
    • setExtensions

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

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

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

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

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

      void setImplementors(AssociationList list) throws RemoteException
      Sets the Implementors 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.
    • setImplementors

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

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

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

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

      void setPrimaryPropertyGroups(AssociationList list, int state) throws RemoteException
      Sets the PrimaryPropertyGroups list to be list. Objects of which can be of type:
      PropertyGroup
      Parameters:
      list - AssociationList
      state - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setPrimaryPropertyGroup

      void setPrimaryPropertyGroup(PropertyGroup inObject) throws RemoteException
      Sets the PrimaryPropertyGroups list 0th element to be inObject.
      Parameters:
      inObject - PropertyGroup
      Throws:
      RemoteException - If error communicating with remote object.
    • setProperties

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

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

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

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

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

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

      void setSourceTransformations(AssociationList list) throws RemoteException
      Parameters:
      list - AssociationList
      Throws:
      RemoteException - If error communicating with remote object.
    • setSourceTransformations

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

      void setSpecSourceTransformations(AssociationList list) throws RemoteException
      Parameters:
      list - AssociationList
      Throws:
      RemoteException - If error communicating with remote object.
    • setSpecSourceTransformations

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

      void setSpecTargetTransformations(AssociationList list) throws RemoteException
      Parameters:
      list - AssociationList
      Throws:
      RemoteException - If error communicating with remote object.
    • setSpecTargetTransformations

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

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

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

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

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

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

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

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

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