Interface MiningResult

All Superinterfaces:
AbstractTransformation, CMetadata, MdObjectBase, MdObjectBaseUtil, MdObjectBaseXML, PrimaryType, Remote, Root, Transformation

public interface MiningResult extends Transformation
Represents a SAS Enterprise Data Mining Model that is a formula or algorithm that computes outputs from inputs. A data mining model includes information about the conditional distribution of the target variables, given the input variables.

Attributes of MiningResult are:

Associations of MiningResult are:

Usage

To create an instance of this MiningResult, use the factory create methods.
Example: create a MiningResult with name "MiningResult_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();
 MiningResult myObject = (MiningResult) factory.createComplexMetadataObject(objectStore, "MiningResult_Object", MetadataObjects.MININGRESULT, "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_SUBJECT_NAME

      static final String ATTRIBUTE_SUBJECT_NAME
      Constant used for the name of the Subject attribute.

      Subject: Subject

      See Also:
    • ATTRIBUTE_MININGFUNCTION_NAME

      static final String ATTRIBUTE_MININGFUNCTION_NAME
      Constant used for the name of the MiningFunction attribute.

      MiningFunction: The function used. such as Association, Sequence

      See Also:
    • ATTRIBUTE_MININGALGORITHM_NAME

      static final String ATTRIBUTE_MININGALGORITHM_NAME
      Constant used for the name of the MiningAlgorithm attribute.

      MiningAlgorithm: The algorithm used. such as Clustering, Tree

      See Also:
    • ATTRIBUTE_MININGTOOL_NAME

      static final String ATTRIBUTE_MININGTOOL_NAME
      Constant used for the name of the MiningTool attribute.

      MiningTool: MiningTool

      See Also:
    • ATTRIBUTE_STATUS_NAME

      static final String ATTRIBUTE_STATUS_NAME
      Constant used for the name of the Status attribute.

      Status: Production, Archived, Experimental

      See Also:
    • ATTRIBUTE_RATING_NAME

      static final String ATTRIBUTE_RATING_NAME
      Constant used for the name of the Rating attribute.

      Rating: How good does the result rate?

      See Also:
    • ATTRIBUTE_WORKSPACENAME_NAME

      static final String ATTRIBUTE_WORKSPACENAME_NAME
      Constant used for the name of the WorkspaceName attribute.

      WorkspaceName: Name of the document the result was created in.

      See Also:
    • ATTRIBUTE_MODELKEY_NAME

      static final String ATTRIBUTE_MODELKEY_NAME
      Constant used for the name of the ModelKey attribute.

      ModelKey: UUID or Name of the model used to score a table.

      See Also:
    • ATTRIBUTE_SOURCECODETYPE_NAME

      static final String ATTRIBUTE_SOURCECODETYPE_NAME
      Constant used for the name of the SourceCodeType attribute.

      SourceCodeType: "Data Step" for data step fragment code, and "SAS Program" for sas program code.

      See Also:
    • ASSOCIATION_MININGREPORTS_NAME

      static final String ASSOCIATION_MININGREPORTS_NAME
      Constant used for the name of the MiningReports association.

      MiningReports: The collection of data and metadata to create reports for this mining result.  

      See Also:
    • ASSOCIATION_TARGETS_NAME

      static final String ASSOCIATION_TARGETS_NAME
      Constant used for the name of the Targets association.

      Targets: The targets that are acted upon by this model.  

      See Also:
    • ASSOCIATION_TARGETTABLE_NAME

      static final String ASSOCIATION_TARGETTABLE_NAME
      Constant used for the name of the TargetTable association.

      TargetTable: The target table associated to this mining result.  

      See Also:
    • ASSOCIATION_TRAINCODE_NAME

      static final String ASSOCIATION_TRAINCODE_NAME
      Constant used for the name of the TrainCode association.

      TrainCode: The code used to retrain a model.  

      See Also:
    • ASSOCIATION_RESULTPMML_NAME

      static final String ASSOCIATION_RESULTPMML_NAME
      Constant used for the name of the ResultPMML association.

      ResultPMML: The PMML associated to this mining result. 

      See Also:
    • ASSOCIATION_TRAININGTABLE_NAME

      static final String ASSOCIATION_TRAININGTABLE_NAME
      Constant used for the name of the TrainingTable association.

      TrainingTable: The traning table associated with this mining result. 

      See Also:
  • Method Details

    • initializeRequiredObjects

      void initializeRequiredObjects() throws RemoteException
      (S) This initializes the Required Objects(Roles) which are:
      Specified by:
      initializeRequiredObjects in interface AbstractTransformation
      Specified by:
      initializeRequiredObjects in interface MdObjectBaseUtil
      Specified by:
      initializeRequiredObjects in interface PrimaryType
      Specified by:
      initializeRequiredObjects in interface Root
      Specified by:
      initializeRequiredObjects in interface Transformation
      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:
      MiningReports
      Targets
      TargetTable
      TrainCode
      Specified by:
      initializePredObjects in interface AbstractTransformation
      Specified by:
      initializePredObjects in interface MdObjectBase
      Specified by:
      initializePredObjects in interface PrimaryType
      Specified by:
      initializePredObjects in interface Root
      Specified by:
      initializePredObjects in interface Transformation
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
    • getSubject

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

      AssociationList getTargetTables() throws RemoteException, MdException
      Gets the AssociationList of TargetTables
      Returns:
      Returns the AssociationList of TargetTables which can be of type:
      RelationalTable
      PhysicalTable
      WorkTable
      SecuredTable
      QueryTable
      JoinTable
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException
    • getTargetTable

      RelationalTable getTargetTable() throws RemoteException, MdException
      Gets the RelationalTable for TargetTable
      Returns:
      The RelationalTable ( null if not set) of TargetTablewhich can be of type:
      RelationalTable
      PhysicalTable
      WorkTable
      SecuredTable
      QueryTable
      JoinTable
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getTrainCodes

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

      Text getTrainCode() throws RemoteException, MdException
      Gets the Text for TrainCode
      Returns:
      The Text ( null if not set) of TrainCodewhich 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.
    • getResultPMMLs

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

      TextStore getResultPMML() throws RemoteException, MdException
      Gets the TextStore for ResultPMML
      Returns:
      The TextStore ( null if not set ) of ResultPMML 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.
    • getTrainingTables

      AssociationList getTrainingTables() throws RemoteException, MdException
      Gets the Association list of TrainingTables
      Returns:
      The AssociationList of TrainingTables which can be of type:
      PhysicalTable
      WorkTable
      SecuredTable
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getTrainingTable

      PhysicalTable getTrainingTable() throws RemoteException, MdException
      Gets the PhysicalTable for TrainingTable
      Returns:
      The PhysicalTable ( null if not set ) of TrainingTable which can be of type:
      PhysicalTable
      WorkTable
      SecuredTable
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getMiningReports

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

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

      AssociationList getTargetTables(boolean fGoToServer) throws RemoteException, MdException
      Gets the Associationlist of TargetTables
      Parameters:
      fGoToServer - boolean Get the value from the server.
      Returns:
      Returns the AssociationList of TargetTables which can be of type:
      RelationalTable
      PhysicalTable
      WorkTable
      SecuredTable
      QueryTable
      JoinTable
      Throws:
      RemoteException - If error connecting/communicating to/with remote object.
      MdException - If error getting/setting part of the object.
    • getTrainCodes

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

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

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

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

      void setSubject(String inSubject, int state) throws RemoteException
      Sets the Subject Metadata State.
      Parameters:
      inSubject - String
      state - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setSubjectState

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

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

      void setMiningFunction(String inMiningFunction, int state) throws RemoteException
      Sets the MiningFunction Metadata State.
      Parameters:
      inMiningFunction - String
      state - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setMiningFunctionState

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

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

      void setMiningAlgorithm(String inMiningAlgorithm, int state) throws RemoteException
      Sets the MiningAlgorithm Metadata State.
      Parameters:
      inMiningAlgorithm - String
      state - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setMiningAlgorithmState

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

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

      void setMiningTool(String inMiningTool, int state) throws RemoteException
      Sets the MiningTool Metadata State.
      Parameters:
      inMiningTool - String
      state - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setMiningToolState

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

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

      void setStatus(String inStatus, int state) throws RemoteException
      Sets the Status Metadata State.
      Parameters:
      inStatus - String
      state - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setStatusState

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

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

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

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

      void setRating(String inRating, int state) throws RemoteException
      Sets the Rating value and Metadata State.
      Parameters:
      inRating - String
      state - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setRatingState

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

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

      void setWorkspaceName(String inWorkspaceName, int state) throws RemoteException
      Sets the WorkspaceName Metadata State.
      Parameters:
      inWorkspaceName - String
      state - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setWorkspaceNameState

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

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

      void setModelKey(String inModelKey, int state) throws RemoteException
      Sets the ModelKey Metadata State.
      Parameters:
      inModelKey - String
      state - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setModelKeyState

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

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

      void setSourceCodeType(String inSourceCodeType, int state) throws RemoteException
      Sets the SourceCodeType Metadata State.
      Parameters:
      inSourceCodeType - String
      state - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setSourceCodeTypeState

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

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

      void setMiningReports(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.
    • setTargets

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

      void setTargets(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.
    • setTargetTables

      void setTargetTables(AssociationList list) throws RemoteException
      Sets the TargetTables list to be list. Object of which can be of type:
      RelationalTable
      PhysicalTable
      WorkTable
      SecuredTable
      QueryTable
      JoinTable
      Parameters:
      list - AssociationList
      Throws:
      RemoteException - If error communicating with remote object.
    • setTargetTables

      void setTargetTables(AssociationList list, int state) throws RemoteException
      Sets the TargetTables list to be list. Object of which can be of type:
      RelationalTable
      PhysicalTable
      WorkTable
      SecuredTable
      QueryTable
      JoinTable
      Parameters:
      list - AssociationList
      state - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setTargetTable

      void setTargetTable(RelationalTable inObject) throws RemoteException
      Sets the TargetTables list 0th element to be inObject.
      Parameters:
      inObject - RelationalTable
      Throws:
      RemoteException - If error communicating with remote object.
    • setTrainCodes

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

      void setTrainCodes(AssociationList list, int state) throws RemoteException
      Sets the TrainCodes 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.
    • setTrainCode

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

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

      void setResultPMMLs(AssociationList list, int state) throws RemoteException
      Sets the ResultPMMLs list to be list. Objects of which can be of type:
      TextStore
      Parameters:
      list - AssociationList
      state - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setResultPMML

      void setResultPMML(TextStore inObject) throws RemoteException
      Sets the ResultPMMLs list 0th element to be inObject.
      Parameters:
      inObject - TextStore
      Throws:
      RemoteException - If error communicating with remote object.
    • setTrainingTables

      void setTrainingTables(AssociationList list) throws RemoteException
      Sets the TrainingTables list to be list. Objects of which can be of type:
      PhysicalTable
      WorkTable
      SecuredTable
      Parameters:
      list - AssociationList
      Throws:
      RemoteException - If error communicating with remote object.
    • setTrainingTables

      void setTrainingTables(AssociationList list, int state) throws RemoteException
      Sets the TrainingTables list to be list. Objects of which can be of type:
      PhysicalTable
      WorkTable
      SecuredTable
      Parameters:
      list - AssociationList
      state - int
      Throws:
      RemoteException - If error communicating with remote object.
    • setTrainingTable

      void setTrainingTable(PhysicalTable inObject) throws RemoteException
      Sets the TrainingTables list 0th element to be inObject.
      Parameters:
      inObject - PhysicalTable
      Throws:
      RemoteException - If error communicating with remote object.