|
Metadata |
|
| |||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface TransformationStep
TransformationStep contains mapping objects. They may be ordered using an association to StepPrecedence.
Attributes of TransformationStep are:
Associations of TransformationStep 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(); TransformationStep myObject = (TransformationStep) factory.createComplexMetadataObject(objectStore, "TransformationStep_Object", MetadataObjects.TRANSFORMATIONSTEP, "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_ACTIVITIES_NAME
Constant used for the name of the Activities association. |
static java.lang.String |
ASSOCIATION_PREDECESSORDEPENDENCIES_NAME
Constant used for the name of the PredecessorDependencies association. |
static java.lang.String |
ASSOCIATION_SUCCESSORDEPENDENCIES_NAME
Constant used for the name of the SuccessorDependencies association. |
static java.lang.String |
ASSOCIATION_TRANSFORMATIONS_NAME
Constant used for the name of the Transformations association. |
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 | |
---|---|
AssociationList |
getActivities()
Gets the Association list of Activities |
AssociationList |
getActivities(boolean fGoToServer)
Gets the Associationlist of Activities |
AssociationList |
getPredecessorDependencies()
Gets the AssociationList of PredecessorDependencies |
AssociationList |
getPredecessorDependencies(boolean fGoToServer)
Gets the Associationlist of PredecessorDependencies |
AssociationList |
getSuccessorDependencies()
Gets the AssociationList of SuccessorDependencies |
AssociationList |
getSuccessorDependencies(boolean fGoToServer)
Gets the Associationlist of SuccessorDependencies |
AssociationList |
getTransformations()
Gets the AssociationList of Transformations |
AssociationList |
getTransformations(boolean fGoToServer)
Gets the Associationlist of Transformations |
void |
initializePredObjects()
(S) Adds the Associated objects to the predObjects which are: PredecessorDependencies SuccessorDependencies Transformations |
void |
initializeRequiredObjects()
(S) This initializes the Required Objects(Roles) which are: |
void |
setActivities(AssociationList list)
Sets the Activities list to be list . |
void |
setActivities(AssociationList inObjects,
int state)
Sets the entire Activities list to match the passed in AssociationList, sets the state of the Activities |
void |
setPredecessorDependencies(AssociationList list)
Sets the PredecessorDependencies list to be list . |
void |
setPredecessorDependencies(AssociationList inObjects,
int state)
Sets the entire AssociationList to match the passed in Vector, sets the state of the AssociationList |
void |
setSuccessorDependencies(AssociationList list)
Sets the SuccessorDependencies list to be list . |
void |
setSuccessorDependencies(AssociationList inObjects,
int state)
Sets the entire AssociationList to match the passed in Vector, sets the state of the AssociationList |
void |
setTransformations(AssociationList list)
Sets the Transformations list to be list . |
void |
setTransformations(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.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_PREDECESSORDEPENDENCIES_NAME
PredecessorDependencies: List of StepPrecedences where this TransformationStep acts as a predecessor to another TransformationStep.
static final java.lang.String ASSOCIATION_SUCCESSORDEPENDENCIES_NAME
SuccessorDependencies: List of StepPrecedences where this TransformationStep acts as a successor to another TransformationStep.
static final java.lang.String ASSOCIATION_TRANSFORMATIONS_NAME
Transformations: The list of transformations associated with these steps.
static final java.lang.String ASSOCIATION_ACTIVITIES_NAME
Activities: The list of activities that include this step.
Method Detail |
---|
void initializeRequiredObjects() throws java.rmi.RemoteException
initializeRequiredObjects
in interface AbstractTransformation
initializeRequiredObjects
in interface MdObjectBaseUtil
initializeRequiredObjects
in interface PrimaryType
initializeRequiredObjects
in interface Root
java.rmi.RemoteException
- If error connecting/communicating to/with remote object.void initializePredObjects() throws java.rmi.RemoteException
PredecessorDependencies
SuccessorDependencies
Transformations
initializePredObjects
in interface AbstractTransformation
initializePredObjects
in interface MdObjectBase
initializePredObjects
in interface PrimaryType
initializePredObjects
in interface Root
java.rmi.RemoteException
- If error connecting/communicating to/with remote object.AssociationList getPredecessorDependencies() throws java.rmi.RemoteException, MdException
PredecessorDependencies
PredecessorDependencies
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 getSuccessorDependencies() throws java.rmi.RemoteException, MdException
SuccessorDependencies
SuccessorDependencies
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 getTransformations() throws java.rmi.RemoteException, MdException
Transformations
Transformations
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 getActivities() throws java.rmi.RemoteException, MdException
Activities
Activities
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 getPredecessorDependencies(boolean fGoToServer) throws java.rmi.RemoteException, MdException
PredecessorDependencies
fGoToServer
- boolean Get the value from the server.
PredecessorDependencies
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 getSuccessorDependencies(boolean fGoToServer) throws java.rmi.RemoteException, MdException
SuccessorDependencies
fGoToServer
- boolean Get the value from the server.
SuccessorDependencies
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 getTransformations(boolean fGoToServer) throws java.rmi.RemoteException, MdException
Transformations
fGoToServer
- boolean Get the value from the server.
Transformations
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 getActivities(boolean fGoToServer) throws java.rmi.RemoteException, MdException
Activities
fGoToServer
- boolean Get the value from the server.
Activities
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 setPredecessorDependencies(AssociationList list) throws java.rmi.RemoteException
PredecessorDependencies
list to be list
. Objects of which can be of type:
list
- AssociationList
java.rmi.RemoteException
- If error communicating with remote object.void setPredecessorDependencies(AssociationList inObjects, int state) throws java.rmi.RemoteException
inObjects
- AssociationListstate
- int
java.rmi.RemoteException
- If error communicating with remote object.void setSuccessorDependencies(AssociationList list) throws java.rmi.RemoteException
SuccessorDependencies
list to be list
. Objects of which can be of type:
list
- AssociationList
java.rmi.RemoteException
- If error communicating with remote object.void setSuccessorDependencies(AssociationList inObjects, int state) throws java.rmi.RemoteException
inObjects
- AssociationListstate
- int
java.rmi.RemoteException
- If error communicating with remote object.void setTransformations(AssociationList list) throws java.rmi.RemoteException
Transformations
list to be list
. Objects of which can be of type:
list
- AssociationList
java.rmi.RemoteException
- If error communicating with remote object.void setTransformations(AssociationList inObjects, int state) throws java.rmi.RemoteException
inObjects
- AssociationListstate
- int
java.rmi.RemoteException
- If error communicating with remote object.void setActivities(AssociationList list) throws java.rmi.RemoteException
Activities
list to be list
. Objects of which can be of type:
list
- AssociationList
java.rmi.RemoteException
- If error communicating with remote object.void setActivities(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 |