|
| Metadata |
|
| |||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||||||
public interface ClassifierMap
Used to map any number of Classifier objects to any number of Classifier objects.
Attributes of ClassifierMap are:
Associations of ClassifierMap are:
factory
create methods. // 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(); ClassifierMap myObject = (ClassifierMap) factory.createComplexMetadataObject(objectStore, "ClassifierMap_Object", MetadataObjects.CLASSIFIERMAP, "AAAAAAAA"); myObject.updateMetadataAll(); // Write object to server objectStore.dispose(); // dispose of the object store if it is no longer needed
MdOMIUtil.
updateMetadataAll
method.
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.
| Field Summary | |
|---|---|
static java.lang.String |
ASSOCIATION_ASSOCIATEDROWSELECTOR_NAME
Constant used for the name of the AssociatedRowSelector association. |
static java.lang.String |
ASSOCIATION_CLASSIFIERSOURCES_NAME
Constant used for the name of the ClassifierSources association. |
static java.lang.String |
ASSOCIATION_CLASSIFIERTARGETS_NAME
Constant used for the name of the ClassifierTargets association. |
static java.lang.String |
ASSOCIATION_FEATUREMAPS_NAME
Constant used for the name of the FeatureMaps association. |
| Fields inherited from interface com.sas.metadata.remote.Transformation |
|---|
ASSOCIATION_ASSOCIATEDPROMPT_NAME, ASSOCIATION_STEPS_NAME |
| Fields inherited from interface com.sas.metadata.remote.PrimaryType |
|---|
ASSOCIATION_FAVORITESCONTAINERS_NAME, ATTRIBUTE_ISHIDDEN_NAME, ATTRIBUTE_PUBLICTYPE_NAME |
| Fields inherited from interface com.sas.metadata.remote.MdObjectBase |
|---|
ATTRIBUTE_DESC_NAME, ATTRIBUTE_ID_NAME, ATTRIBUTE_METADATACREATED_NAME, ATTRIBUTE_METADATAUPDATED_NAME, ATTRIBUTE_NAME_NAME |
| Method Summary | |
|---|---|
RowSelector |
getAssociatedRowSelector()
Gets the RowSelector for AssociatedRowSelector |
AssociationList |
getAssociatedRowSelectors()
Gets the AssociationList of AssociatedRowSelectors |
AssociationList |
getAssociatedRowSelectors(boolean fGoToServer)
Gets the Associationlist of AssociatedRowSelectors |
AssociationList |
getClassifierSources()
Gets the AssociationList of ClassifierSources |
AssociationList |
getClassifierSources(boolean fGoToServer)
Gets the Associationlist of ClassifierSources |
AssociationList |
getClassifierTargets()
Gets the Association list of ClassifierTargets |
AssociationList |
getClassifierTargets(boolean fGoToServer)
Gets the Associationlist of ClassifierTargets |
AssociationList |
getFeatureMaps()
Gets the AssociationList of FeatureMaps |
AssociationList |
getFeatureMaps(boolean fGoToServer)
Gets the Associationlist of FeatureMaps |
void |
initializePredObjects()
(S) Adds the Associated objects to the predObjects which are: AssociatedRowSelectorClassifierSourcesFeatureMaps |
void |
initializeRequiredObjects()
(S) This initializes the Required Objects(Roles) which are: |
void |
setAssociatedRowSelector(RowSelector inObject)
Sets the AssociatedRowSelectors list 0th element to be inObject. |
void |
setAssociatedRowSelectors(AssociationList list)
Sets the AssociatedRowSelectors list to be list. |
void |
setAssociatedRowSelectors(AssociationList list,
int state)
Sets the AssociatedRowSelectors list to be list. |
void |
setClassifierSources(AssociationList list)
Sets the ClassifierSources list to be list. |
void |
setClassifierSources(AssociationList inObjects,
int state)
Sets the entire AssociationList to match the passed in Vector, sets the state of the AssociationList |
void |
setClassifierTargets(AssociationList list)
Sets the ClassifierTargets list to be list. |
void |
setClassifierTargets(AssociationList inObjects,
int state)
Sets the entire ClassifierTargets list to match the passed in AssociationList, sets the state of the ClassifierTargets |
void |
setFeatureMaps(AssociationList list)
Sets the FeatureMaps list to be list. |
void |
setFeatureMaps(AssociationList inObjects,
int state)
Sets the entire AssociationList to match the passed in Vector, sets the state of the AssociationList |
| Methods inherited from interface com.sas.metadata.remote.Transformation |
|---|
getAssociatedPrompt, getAssociatedPrompts, getAssociatedPrompts, getSteps, getSteps, setAssociatedPrompt, setAssociatedPrompts, setAssociatedPrompts, setSteps, setSteps |
| Methods inherited from interface com.sas.metadata.remote.PrimaryType |
|---|
getFavoritesContainers, getFavoritesContainers, getIsHidden, getIsHiddenState, getPublicType, getPublicTypeMaxLength, getPublicTypeState, setFavoritesContainers, setFavoritesContainers, setIsHidden, setIsHidden, setIsHidden, setIsHidden, setIsHiddenState, setPublicType, setPublicType, setPublicTypeState |
| Methods inherited from interface com.sas.metadata.remote.MdObjectBaseXML |
|---|
closeUpdateMetadataXML, createEmptyXML, createObjectRefreshXML, createObjectXML, createObjectXML, createUpdateAssociationXML, createUpdateAssociationXML, createUpdateSimpleXML, doCreateUpdateXML, getUpdateSimpleSubstring, updateMetadataAll |
| Field Detail |
|---|
static final java.lang.String ASSOCIATION_ASSOCIATEDROWSELECTOR_NAME
AssociatedRowSelector: The row selector that is used as part of this classifier map.
static final java.lang.String ASSOCIATION_CLASSIFIERSOURCES_NAME
ClassifierSources: The classifier that act as input to this transformation process.
static final java.lang.String ASSOCIATION_FEATUREMAPS_NAME
FeatureMaps: The set of feature maps associated with a classifier map.
static final java.lang.String ASSOCIATION_CLASSIFIERTARGETS_NAME
ClassifierTargets: The classifiers that are created or loaded as a result of this transformation process.
| Method Detail |
|---|
void initializeRequiredObjects()
throws java.rmi.RemoteException
initializeRequiredObjects in interface AbstractTransformationinitializeRequiredObjects in interface MdObjectBaseUtilinitializeRequiredObjects in interface PrimaryTypeinitializeRequiredObjects in interface RootinitializeRequiredObjects in interface Transformationjava.rmi.RemoteException - If error connecting/communicating to/with remote object.
void initializePredObjects()
throws java.rmi.RemoteException
AssociatedRowSelectorClassifierSourcesFeatureMaps
initializePredObjects in interface AbstractTransformationinitializePredObjects in interface MdObjectBaseinitializePredObjects in interface PrimaryTypeinitializePredObjects in interface RootinitializePredObjects in interface Transformationjava.rmi.RemoteException - If error connecting/communicating to/with remote object.
AssociationList getAssociatedRowSelectors()
throws java.rmi.RemoteException,
MdException
AssociatedRowSelectors
AssociatedRowSelectors which can be of type: java.rmi.RemoteException - If error connecting/communicating to/with remote object.
MdException
RowSelector getAssociatedRowSelector()
throws java.rmi.RemoteException,
MdException
RowSelector for AssociatedRowSelector
RowSelector ( null if not set) of AssociatedRowSelectorwhich can be of type: java.rmi.RemoteException - If error connecting/communicating to/with remote object.
MdException - If error getting/setting part of the object.
AssociationList getClassifierSources()
throws java.rmi.RemoteException,
MdException
ClassifierSources
ClassifierSources which can be of type: java.rmi.RemoteException - If error connecting/communicating to/with remote object.
MdException - If error getting/setting part of the object.
AssociationList getFeatureMaps()
throws java.rmi.RemoteException,
MdException
FeatureMaps
FeatureMaps which can be of type: java.rmi.RemoteException - If error connecting/communicating to/with remote object.
MdException - If error getting/setting part of the object.
AssociationList getClassifierTargets()
throws java.rmi.RemoteException,
MdException
ClassifierTargets
ClassifierTargets which can be of type: java.rmi.RemoteException - If error connecting/communicating to/with remote object.
MdException - If error getting/setting part of the object.
AssociationList getAssociatedRowSelectors(boolean fGoToServer)
throws java.rmi.RemoteException,
MdException
AssociatedRowSelectors
fGoToServer - boolean Get the value from the server.
AssociatedRowSelectors which can be of type: java.rmi.RemoteException - If error connecting/communicating to/with remote object.
MdException - If error getting/setting part of the object.
AssociationList getClassifierSources(boolean fGoToServer)
throws java.rmi.RemoteException,
MdException
ClassifierSources
fGoToServer - boolean Get the value from the server.
ClassifierSources which can be of type: java.rmi.RemoteException - If error connecting/communicating to/with remote object.
MdException - If error getting/setting part of the object.
AssociationList getFeatureMaps(boolean fGoToServer)
throws java.rmi.RemoteException,
MdException
FeatureMaps
fGoToServer - boolean Get the value from the server.
FeatureMaps which can be of type: java.rmi.RemoteException - If error connecting/communicating to/with remote object.
MdException - If error getting/setting part of the object.
AssociationList getClassifierTargets(boolean fGoToServer)
throws java.rmi.RemoteException,
MdException
ClassifierTargets
fGoToServer - boolean Get the value from the server.
ClassifierTargets which can be of type: java.rmi.RemoteException - If error connecting/communicating to/with remote object.
MdException - If error getting/setting part of the object.
void setAssociatedRowSelectors(AssociationList list)
throws java.rmi.RemoteException
AssociatedRowSelectors list to be list. Object of which can be of type:
list - AssociationList
java.rmi.RemoteException - If error communicating with remote object.
void setAssociatedRowSelectors(AssociationList list,
int state)
throws java.rmi.RemoteException
AssociatedRowSelectors list to be list. Object of which can be of type:
list - AssociationListstate - int
java.rmi.RemoteException - If error communicating with remote object.
void setAssociatedRowSelector(RowSelector inObject)
throws java.rmi.RemoteException
AssociatedRowSelectors list 0th element to be inObject.
inObject - RowSelector
java.rmi.RemoteException - If error communicating with remote object.
void setClassifierSources(AssociationList list)
throws java.rmi.RemoteException
ClassifierSources list to be list. Objects of which can be of type:
list - AssociationList
java.rmi.RemoteException - If error communicating with remote object.
void setClassifierSources(AssociationList inObjects,
int state)
throws java.rmi.RemoteException
inObjects - AssociationListstate - int
java.rmi.RemoteException - If error communicating with remote object.
void setFeatureMaps(AssociationList list)
throws java.rmi.RemoteException
FeatureMaps list to be list. Objects of which can be of type:
list - AssociationList
java.rmi.RemoteException - If error communicating with remote object.
void setFeatureMaps(AssociationList inObjects,
int state)
throws java.rmi.RemoteException
inObjects - AssociationListstate - int
java.rmi.RemoteException - If error communicating with remote object.
void setClassifierTargets(AssociationList list)
throws java.rmi.RemoteException
ClassifierTargets list to be list. Objects of which can be of type:
list - AssociationList
java.rmi.RemoteException - If error communicating with remote object.
void setClassifierTargets(AssociationList inObjects,
int state)
throws java.rmi.RemoteException
inObjects - AssociationListstate - int
java.rmi.RemoteException - If error communicating with remote object.
|
| Metadata |
|
| |||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||||||