Package com.sas.metadata.remote
Interface AssociationProperty
- All Superinterfaces:
AbstractProperty,CMetadata,LocalizedType,MdObjectBase,MdObjectBaseUtil,MdObjectBaseXML,PrototypeProperty,Remote,Root,SecondaryType
The SAS Metadata Model provides a Prototype metadata type to define templates that can be used to create metadata entities. The AssociationProperty metadata type is used with other prototype objects to define the associations that are needed in a given scenario.
Example: create a AssociationProperty with name "AssociationProperty_Object", in repository "AAAAAAAA".
Attributes of AssociationProperty are:
Associations of AssociationProperty are:
Usage
To create an instance of this AssociationProperty, use thefactory
create methods. Example: create a AssociationProperty with name "AssociationProperty_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(); AssociationProperty myObject = (AssociationProperty) factory.createComplexMetadataObject(objectStore, "AssociationProperty_Object", MetadataObjects.ASSOCIATIONPROPERTY, "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
updateMetadataAllmethod. - If an object needs to be deleted, the
deletemethod 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 Summary
FieldsModifier and TypeFieldDescriptionstatic final StringConstant used for the name of the AssociatedPrototypes association.static final StringConstant used for the name of the AssociationName attribute.static final StringConstant used for the name of the Maximum attribute.static final StringConstant used for the name of the MetadataType attribute.static final StringConstant used for the name of the Minimum attribute.static final StringConstant used for the name of the PartnerName attribute.Fields inherited from interface com.sas.metadata.remote.AbstractProperty
ASSOCIATION_ASSOCIATEDPROPERTYGROUP_NAME, ASSOCIATION_CUSTOMIZERS_NAME, ASSOCIATION_EDITORS_NAME, ASSOCIATION_STOREDCONFIGURATION_NAME, ASSOCIATION_VALIDATORS_NAME, ATTRIBUTE_ISEXPERT_NAME, ATTRIBUTE_ISLINKED_NAME, ATTRIBUTE_ISREQUIRED_NAME, ATTRIBUTE_ISUPDATEABLE_NAME, ATTRIBUTE_ISVISIBLE_NAMEFields inherited from interface com.sas.metadata.remote.LocalizedType
ASSOCIATION_RESOURCES_NAMEFields inherited from interface com.sas.metadata.remote.MdObjectBase
ATTRIBUTE_DESC_NAME, ATTRIBUTE_ID_NAME, ATTRIBUTE_METADATACREATED_NAME, ATTRIBUTE_METADATAUPDATED_NAME, ATTRIBUTE_NAME_NAMEFields inherited from interface com.sas.metadata.remote.PrototypeProperty
ASSOCIATION_OWNINGPROTOTYPE_NAMEFields inherited from interface com.sas.metadata.remote.Root
ASSOCIATION_ACCESSCONTROLS_NAME, ASSOCIATION_CHANGES_NAME, ASSOCIATION_CUSTOMASSOCIATIONS_NAME, ASSOCIATION_DOCUMENTS_NAME, ASSOCIATION_EXTENSIONS_NAME, ASSOCIATION_EXTERNALIDENTITIES_NAME, ASSOCIATION_GROUPS_NAME, ASSOCIATION_IMPLEMENTORS_NAME, ASSOCIATION_KEYWORDS_NAME, ASSOCIATION_LOCALIZEDATTRIBUTES_NAME, ASSOCIATION_NOTES_NAME, ASSOCIATION_PRIMARYPROPERTYGROUP_NAME, ASSOCIATION_PROMPTS_NAME, ASSOCIATION_PROPERTIES_NAME, ASSOCIATION_PROPERTYSETS_NAME, ASSOCIATION_REFERENCEDOBJECTS_NAME, ASSOCIATION_RESPONSIBLEPARTIES_NAME, ASSOCIATION_SOURCETRANSFORMATIONS_NAME, ASSOCIATION_SPECSOURCETRANSFORMATIONS_NAME, ASSOCIATION_SPECTARGETTRANSFORMATIONS_NAME, ASSOCIATION_TARGETTRANSFORMATIONS_NAME, ASSOCIATION_TIMESTAMPS_NAME, ASSOCIATION_TREES_NAME, ASSOCIATION_TSOBJECTNAMESPACE_NAME, ASSOCIATION_USEDBYPROTOTYPES_NAME, ASSOCIATION_USINGPROTOTYPE_NAME, ASSOCIATION_VARIABLES_NAME, ATTRIBUTE_CHANGESTATE_NAME, ATTRIBUTE_LOCKEDBY_NAME, ATTRIBUTE_USAGEVERSION_NAME -
Method Summary
Modifier and TypeMethodDescriptionGets the Association list ofAssociatedPrototypesgetAssociatedPrototypes(boolean fGoToServer) Gets the Associationlist ofAssociatedPrototypesStringGets theStringvalue ofAssociationNameintGets the maximum length ofAssociationNameintGets the Metadata State ofAssociationNameintGets theintvalue ofMaximumintGets the Metadata State ofMaximumStringGets theStringvalue ofMetadataTypeintGets the maximum length ofMetadataTypeintGets the Metadata State ofMetadataTypeintGets theintvalue ofMinimumintGets the Metadata State ofMinimumStringGets theStringvalue ofPartnerNameintGets the maximum length ofPartnerNameintGets the Metadata State ofPartnerNamevoid(S) Adds the Associated objects to the predObjects which are:void(S) This initializes the Required Objects(Roles) which are:voidSets theAssociatedPrototypeslist to belist.voidsetAssociatedPrototypes(AssociationList inObjects, int state) Sets the entire AssociatedPrototypes list to match the passed in AssociationList, sets the state of the AssociatedPrototypesvoidsetAssociationName(String inAssociationName) Sets theAssociationNamevalue and sets the state to MetadataState.LOCAL.voidsetAssociationName(String inAssociationName, int state) Sets theAssociationNameMetadata State.voidsetAssociationNameState(int state) Sets the Metadata State ofAssociationName.voidsetMaximum(int inMaximum) Sets theMaximumvalue and sets the state to MetadataState.LOCAL.voidsetMaximum(int inMaximum, int state) Sets theMaximumMetadata State.voidsetMaximum(String inMaximum) Sets theMaximumvalue and sets the state to MetadataState.LOCAL.voidsetMaximum(String inMaximum, int state) Sets theMaximumvalue and Metadata State.voidsetMaximumState(int state) Sets the Metadata State ofMaximum.voidsetMetadataType(String inMetadataType) Sets theMetadataTypevalue and sets the state to MetadataState.LOCAL.voidsetMetadataType(String inMetadataType, int state) Sets theMetadataTypeMetadata State.voidsetMetadataTypeState(int state) Sets the Metadata State ofMetadataType.voidsetMinimum(int inMinimum) Sets theMinimumvalue and sets the state to MetadataState.LOCAL.voidsetMinimum(int inMinimum, int state) Sets theMinimumMetadata State.voidsetMinimum(String inMinimum) Sets theMinimumvalue and sets the state to MetadataState.LOCAL.voidsetMinimum(String inMinimum, int state) Sets theMinimumvalue and Metadata State.voidsetMinimumState(int state) Sets the Metadata State ofMinimum.voidsetPartnerName(String inPartnerName) Sets thePartnerNamevalue and sets the state to MetadataState.LOCAL.voidsetPartnerName(String inPartnerName, int state) Sets thePartnerNameMetadata State.voidsetPartnerNameState(int state) Sets the Metadata State ofPartnerName.Methods inherited from interface com.sas.metadata.remote.AbstractProperty
getAssociatedPropertyGroup, getAssociatedPropertyGroups, getAssociatedPropertyGroups, getCustomizers, getCustomizers, getEditors, getEditors, getIsExpert, getIsExpertState, getIsLinked, getIsLinkedState, getIsRequired, getIsRequiredState, getIsUpdateable, getIsUpdateableState, getIsVisible, getIsVisibleState, getStoredConfiguration, getStoredConfigurations, getStoredConfigurations, getValidators, getValidators, setAssociatedPropertyGroup, setAssociatedPropertyGroups, setAssociatedPropertyGroups, setCustomizers, setCustomizers, setEditors, setEditors, setIsExpert, setIsExpert, setIsExpert, setIsExpert, setIsExpertState, setIsLinked, setIsLinked, setIsLinked, setIsLinked, setIsLinkedState, setIsRequired, setIsRequired, setIsRequired, setIsRequired, setIsRequiredState, setIsUpdateable, setIsUpdateable, setIsUpdateable, setIsUpdateable, setIsUpdateableState, setIsVisible, setIsVisible, setIsVisible, setIsVisible, setIsVisibleState, setStoredConfiguration, setStoredConfigurations, setStoredConfigurations, setValidators, setValidatorsMethods inherited from interface com.sas.metadata.remote.LocalizedType
getResources, getResources, setResources, setResourcesMethods inherited from interface com.sas.metadata.remote.MdObjectBase
addElementToChangeList, clearChangeList, getChangeList, getCMetadataType, getDesc, getDescMaxLength, getDescState, getFQID, getId, getIdState, getMetadataCreated, getMetadataCreatedState, getMetadataUpdated, getMetadataUpdatedState, getName, getNameMaxLength, getNameState, getObjectStore, getPredAssociations, getRepositoryID, getRequiredAssociations, getState, isAssociationRequired, isNewObject, isPredAssociation, removeElementFromChangeList, resetObject, resetState, resetStates, setCMetadataType, setDesc, setDesc, setDescState, setFQID, setFQID, setId, setId, setIdState, setMetadataCreated, setMetadataCreated, setMetadataCreatedState, setMetadataUpdated, setMetadataUpdated, setMetadataUpdatedState, setName, setName, setNameState, setObjectStore, setStateMethods inherited from interface com.sas.metadata.remote.MdObjectBaseUtil
addMdObjectListener, delete, dispose, fireMdObjectModified, getAssociatedObjects, getAssociatedObjects, getAssociatedObjects, getAssociationNames, getAssocs, getAssocsWA, getAttributeNames, getAttrs, getAttrsStates, getAuthorizationUtil, getChangeManagementState, getChgMgtExternalIdentityImportType, getClientSideOnlyObject, getMdObjectAssociation, getPopulatedAssocs, getUpdatedAttrs, getViewList, isCheckedOut, isLocked, objectModified, removeMdObjectListener, setAttrs, setChangeManagementTargetRepository, setChgMgtExternalIdentityImportType, setClientSideOnlyObject, setMdObjectAssociation, touch, updateAssnsIdsMethods inherited from interface com.sas.metadata.remote.MdObjectBaseXML
closeUpdateMetadataXML, createEmptyXML, createObjectRefreshXML, createObjectXML, createObjectXML, createUpdateAssociationXML, createUpdateAssociationXML, createUpdateSimpleXML, doCreateUpdateXML, getUpdateSimpleSubstring, updateMetadataAllMethods inherited from interface com.sas.metadata.remote.PrototypeProperty
getOwningPrototype, getOwningPrototypes, getOwningPrototypes, setOwningPrototype, setOwningPrototypes, setOwningPrototypesMethods inherited from interface com.sas.metadata.remote.Root
getAccessControls, getAccessControls, getChanges, getChanges, getChangeState, getChangeStateMaxLength, getChangeStateState, getCustomAssociations, getCustomAssociations, getDocuments, getDocuments, getExtensions, getExtensions, getExternalIdentities, getExternalIdentities, getGroups, getGroups, getImplementors, getImplementors, getKeywords, getKeywords, getLocalizedAttributes, getLocalizedAttributes, getLockedBy, getLockedByMaxLength, getLockedByState, getNotes, getNotes, getPrimaryPropertyGroup, getPrimaryPropertyGroups, getPrimaryPropertyGroups, getPrompts, getPrompts, getProperties, getProperties, getPropertySets, getPropertySets, getReferencedObjects, getReferencedObjects, getResponsibleParties, getResponsibleParties, getSourceTransformations, getSourceTransformations, getSpecSourceTransformations, getSpecSourceTransformations, getSpecTargetTransformations, getSpecTargetTransformations, getTargetTransformations, getTargetTransformations, getTimestamps, getTimestamps, getTrees, getTrees, getTSObjectNamespace, getTSObjectNamespaces, getTSObjectNamespaces, getUsageVersion, getUsageVersionState, getUsedByPrototypes, getUsedByPrototypes, getUsingPrototype, getUsingPrototypes, getUsingPrototypes, getVariables, getVariables, setAccessControls, setAccessControls, setChanges, setChanges, setChangeState, setChangeState, setChangeStateState, setCustomAssociations, setCustomAssociations, setDocuments, setDocuments, setExtensions, setExtensions, setExternalIdentities, setExternalIdentities, setGroups, setGroups, setImplementors, setImplementors, setKeywords, setKeywords, setLocalizedAttributes, setLocalizedAttributes, setLockedBy, setLockedBy, setLockedByState, setNotes, setNotes, setPrimaryPropertyGroup, setPrimaryPropertyGroups, setPrimaryPropertyGroups, setPrompts, setPrompts, setProperties, setProperties, setPropertySets, setPropertySets, setReferencedObjects, setReferencedObjects, setResponsibleParties, setResponsibleParties, setSourceTransformations, setSourceTransformations, setSpecSourceTransformations, setSpecSourceTransformations, setSpecTargetTransformations, setSpecTargetTransformations, setTargetTransformations, setTargetTransformations, setTimestamps, setTimestamps, setTrees, setTrees, setTSObjectNamespace, setTSObjectNamespaces, setTSObjectNamespaces, setUsageVersion, setUsageVersion, setUsageVersion, setUsageVersion, setUsageVersionState, setUsedByPrototypes, setUsedByPrototypes, setUsingPrototype, setUsingPrototypes, setUsingPrototypes, setVariables, setVariables
-
Field Details
-
ATTRIBUTE_METADATATYPE_NAME
static final String ATTRIBUTE_METADATATYPE_NAMEConstant used for the name of the MetadataType attribute.MetadataType: The type that can be associated using this association name.
- See Also:
-
ATTRIBUTE_ASSOCIATIONNAME_NAME
static final String ATTRIBUTE_ASSOCIATIONNAME_NAMEConstant used for the name of the AssociationName attribute.AssociationName: The name of this association
- See Also:
-
ATTRIBUTE_PARTNERNAME_NAME
static final String ATTRIBUTE_PARTNERNAME_NAMEConstant used for the name of the PartnerName attribute.PartnerName: The name the partner uses for this association
- See Also:
-
ATTRIBUTE_MINIMUM_NAME
static final String ATTRIBUTE_MINIMUM_NAMEConstant used for the name of the Minimum attribute.Minimum: The minimum number of associated objects.
- See Also:
-
ATTRIBUTE_MAXIMUM_NAME
static final String ATTRIBUTE_MAXIMUM_NAMEConstant used for the name of the Maximum attribute.Maximum: The maximum number of associated objects.
- See Also:
-
ASSOCIATION_ASSOCIATEDPROTOTYPES_NAME
static final String ASSOCIATION_ASSOCIATEDPROTOTYPES_NAMEConstant used for the name of the AssociatedPrototypes association.AssociatedPrototypes: The prototype objects used as partners with this association object.
- See Also:
-
-
Method Details
-
initializeRequiredObjects
void initializeRequiredObjects() throws RemoteException(S) This initializes the Required Objects(Roles) which are:- Specified by:
initializeRequiredObjectsin interfaceAbstractProperty- Specified by:
initializeRequiredObjectsin interfaceLocalizedType- Specified by:
initializeRequiredObjectsin interfaceMdObjectBaseUtil- Specified by:
initializeRequiredObjectsin interfacePrototypeProperty- Specified by:
initializeRequiredObjectsin interfaceRoot- Specified by:
initializeRequiredObjectsin interfaceSecondaryType- 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:- Specified by:
initializePredObjectsin interfaceAbstractProperty- Specified by:
initializePredObjectsin interfaceLocalizedType- Specified by:
initializePredObjectsin interfaceMdObjectBase- Specified by:
initializePredObjectsin interfacePrototypeProperty- Specified by:
initializePredObjectsin interfaceRoot- Specified by:
initializePredObjectsin interfaceSecondaryType- Throws:
RemoteException- If error connecting/communicating to/with remote object.
-
getMetadataType
String getMetadataType() throws RemoteExceptionGets theStringvalue ofMetadataType- Returns:
- The
MetadataType - Throws:
RemoteException- If error connecting/communicating to/with remote object.
-
getMetadataTypeState
int getMetadataTypeState() throws RemoteExceptionGets the Metadata State ofMetadataType- Returns:
- The State.
- Throws:
RemoteException- If error connecting/communicating to/with remote object.
-
getMetadataTypeMaxLength
int getMetadataTypeMaxLength() throws RemoteExceptionGets the maximum length ofMetadataType- Returns:
- The max size
- Throws:
RemoteException- If error connecting/communicating to/with remote object.
-
getAssociationName
String getAssociationName() throws RemoteExceptionGets theStringvalue ofAssociationName- Returns:
- The
AssociationName - Throws:
RemoteException- If error connecting/communicating to/with remote object.
-
getAssociationNameState
int getAssociationNameState() throws RemoteExceptionGets the Metadata State ofAssociationName- Returns:
- The State.
- Throws:
RemoteException- If error connecting/communicating to/with remote object.
-
getAssociationNameMaxLength
int getAssociationNameMaxLength() throws RemoteExceptionGets the maximum length ofAssociationName- Returns:
- The max size
- Throws:
RemoteException- If error connecting/communicating to/with remote object.
-
getPartnerName
String getPartnerName() throws RemoteExceptionGets theStringvalue ofPartnerName- Returns:
- The
PartnerName - Throws:
RemoteException- If error connecting/communicating to/with remote object.
-
getPartnerNameState
int getPartnerNameState() throws RemoteExceptionGets the Metadata State ofPartnerName- Returns:
- The State.
- Throws:
RemoteException- If error connecting/communicating to/with remote object.
-
getPartnerNameMaxLength
int getPartnerNameMaxLength() throws RemoteExceptionGets the maximum length ofPartnerName- Returns:
- The max size
- Throws:
RemoteException- If error connecting/communicating to/with remote object.
-
getMinimum
int getMinimum() throws RemoteExceptionGets theintvalue ofMinimum- Returns:
- The
Minimum - Throws:
RemoteException- If error connecting/communicating to/with remote object.
-
getMinimumState
int getMinimumState() throws RemoteExceptionGets the Metadata State ofMinimum- Returns:
- The State.
- Throws:
RemoteException- If error connecting/communicating to/with remote object.
-
getMaximum
int getMaximum() throws RemoteExceptionGets theintvalue ofMaximum- Returns:
- The
Maximum - Throws:
RemoteException- If error connecting/communicating to/with remote object.
-
getMaximumState
int getMaximumState() throws RemoteExceptionGets the Metadata State ofMaximum- Returns:
- The State.
- Throws:
RemoteException- If error connecting/communicating to/with remote object.
-
getAssociatedPrototypes
Gets the Association list ofAssociatedPrototypes- Returns:
- The AssociationList of
AssociatedPrototypeswhich can be of type:
Prototype - Throws:
RemoteException- If error connecting/communicating to/with remote object.MdException- If error getting/setting part of the object.
-
getAssociatedPrototypes
Gets the Associationlist ofAssociatedPrototypes- Parameters:
fGoToServer- boolean Get the value from the server.- Returns:
- Returns the
AssociatedPrototypeswhich can be of type:
Prototype - Throws:
RemoteException- If error connecting/communicating to/with remote object.MdException- If error getting/setting part of the object.
-
setMetadataType
void setMetadataType(String inMetadataType) throws RemoteException Sets theMetadataTypevalue and sets the state to MetadataState.LOCAL.- Parameters:
inMetadataType- String- Throws:
RemoteException- If error communicating with remote object.
-
setMetadataType
void setMetadataType(String inMetadataType, int state) throws RemoteException Sets theMetadataTypeMetadata State.- Parameters:
inMetadataType- Stringstate- int- Throws:
RemoteException- If error communicating with remote object.
-
setMetadataTypeState
void setMetadataTypeState(int state) throws RemoteException Sets the Metadata State ofMetadataType.- Parameters:
state- int- Throws:
RemoteException- If error communicating with remote object.
-
setAssociationName
void setAssociationName(String inAssociationName) throws RemoteException Sets theAssociationNamevalue and sets the state to MetadataState.LOCAL.- Parameters:
inAssociationName- String- Throws:
RemoteException- If error communicating with remote object.
-
setAssociationName
void setAssociationName(String inAssociationName, int state) throws RemoteException Sets theAssociationNameMetadata State.- Parameters:
inAssociationName- Stringstate- int- Throws:
RemoteException- If error communicating with remote object.
-
setAssociationNameState
void setAssociationNameState(int state) throws RemoteException Sets the Metadata State ofAssociationName.- Parameters:
state- int- Throws:
RemoteException- If error communicating with remote object.
-
setPartnerName
void setPartnerName(String inPartnerName) throws RemoteException Sets thePartnerNamevalue and sets the state to MetadataState.LOCAL.- Parameters:
inPartnerName- String- Throws:
RemoteException- If error communicating with remote object.
-
setPartnerName
void setPartnerName(String inPartnerName, int state) throws RemoteException Sets thePartnerNameMetadata State.- Parameters:
inPartnerName- Stringstate- int- Throws:
RemoteException- If error communicating with remote object.
-
setPartnerNameState
void setPartnerNameState(int state) throws RemoteException Sets the Metadata State ofPartnerName.- Parameters:
state- int- Throws:
RemoteException- If error communicating with remote object.
-
setMinimum
void setMinimum(int inMinimum) throws RemoteException Sets theMinimumvalue and sets the state to MetadataState.LOCAL.- Parameters:
inMinimum- int- Throws:
RemoteException- If error communicating with remote object.
-
setMinimum
void setMinimum(int inMinimum, int state) throws RemoteException Sets theMinimumMetadata State.- Parameters:
inMinimum- intstate- int- Throws:
RemoteException- If error communicating with remote object.
-
setMinimum
void setMinimum(String inMinimum) throws RemoteException Sets theMinimumvalue and sets the state to MetadataState.LOCAL.- Parameters:
inMinimum- String- Throws:
RemoteException- If error communicating with remote object.
-
setMinimum
void setMinimum(String inMinimum, int state) throws RemoteException Sets theMinimumvalue and Metadata State.- Parameters:
inMinimum- Stringstate- int- Throws:
RemoteException- If error communicating with remote object.
-
setMinimumState
void setMinimumState(int state) throws RemoteException Sets the Metadata State ofMinimum.- Parameters:
state- int- Throws:
RemoteException- If error communicating with remote object.
-
setMaximum
void setMaximum(int inMaximum) throws RemoteException Sets theMaximumvalue and sets the state to MetadataState.LOCAL.- Parameters:
inMaximum- int- Throws:
RemoteException- If error communicating with remote object.
-
setMaximum
void setMaximum(int inMaximum, int state) throws RemoteException Sets theMaximumMetadata State.- Parameters:
inMaximum- intstate- int- Throws:
RemoteException- If error communicating with remote object.
-
setMaximum
void setMaximum(String inMaximum) throws RemoteException Sets theMaximumvalue and sets the state to MetadataState.LOCAL.- Parameters:
inMaximum- String- Throws:
RemoteException- If error communicating with remote object.
-
setMaximum
void setMaximum(String inMaximum, int state) throws RemoteException Sets theMaximumvalue and Metadata State.- Parameters:
inMaximum- Stringstate- int- Throws:
RemoteException- If error communicating with remote object.
-
setMaximumState
void setMaximumState(int state) throws RemoteException Sets the Metadata State ofMaximum.- Parameters:
state- int- Throws:
RemoteException- If error communicating with remote object.
-
setAssociatedPrototypes
- Parameters:
list- AssociationList- Throws:
RemoteException- If error communicating with remote object.
-
setAssociatedPrototypes
Sets the entire AssociatedPrototypes list to match the passed in AssociationList, sets the state of the AssociatedPrototypes- Parameters:
inObjects- AssociationListstate- int- Throws:
RemoteException- If error communicating with remote object.
-