Interface PropertyType
- All Superinterfaces:
CMetadata,LocalizedType,MdObjectBase,MdObjectBaseUtil,MdObjectBaseXML,Remote,Root,SecondaryType
Attributes of PropertyType are:
Associations of PropertyType are:
ArrayTypesCustomizersEditorsElementTypeStoredConfigurationTypedAttPropertiesTypedPropertiesValidators
Usage
To create an instance of this PropertyType, use thefactory
create methods. Example: create a PropertyType with name "PropertyType_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(); PropertyType myObject = (PropertyType) factory.createComplexMetadataObject(objectStore, "PropertyType_Object", MetadataObjects.PROPERTYTYPE, "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 ArrayTypes association.static final StringConstant used for the name of the Customizers association.static final StringConstant used for the name of the Editors association.static final StringConstant used for the name of the ElementType association.static final StringConstant used for the name of the StoredConfiguration association.static final StringConstant used for the name of the TypedAttProperties association.static final StringConstant used for the name of the TypedProperties association.static final StringConstant used for the name of the Validators association.static final StringConstant used for the name of the SQLType attribute.Fields 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.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 AssociationList ofArrayTypesgetArrayTypes(boolean fGoToServer) Gets the Associationlist ofArrayTypesGets the Association list ofCustomizersgetCustomizers(boolean fGoToServer) Gets the Associationlist ofCustomizersGets the Association list ofEditorsgetEditors(boolean fGoToServer) Gets the Associationlist ofEditorsGets thePropertyTypeforElementTypeGets the Association list ofElementTypesgetElementTypes(boolean fGoToServer) Gets the Associationlist ofElementTypesintGets theintvalue ofSQLTypeintGets the Metadata State ofSQLTypeGets theTextforStoredConfigurationGets the Association list ofStoredConfigurationsgetStoredConfigurations(boolean fGoToServer) Gets the Associationlist ofStoredConfigurationsGets the Association list ofTypedAttPropertiesgetTypedAttProperties(boolean fGoToServer) Gets the Associationlist ofTypedAttPropertiesGets the Association list ofTypedPropertiesgetTypedProperties(boolean fGoToServer) Gets the Associationlist ofTypedPropertiesGets the Association list ofValidatorsgetValidators(boolean fGoToServer) Gets the Associationlist ofValidatorsvoid(S) Adds the Associated objects to the predObjects which are:
ArrayTypesvoid(S) This initializes the Required Objects(Roles) which are:voidsetArrayTypes(AssociationList list) Sets theArrayTypeslist to belist.voidsetArrayTypes(AssociationList inObjects, int state) Sets the entire AssociationList to match the passed in Vector, sets the state of the AssociationListvoidSets theCustomizerslist to belist.voidsetCustomizers(AssociationList inObjects, int state) Sets the entire Customizers list to match the passed in AssociationList, sets the state of the CustomizersvoidsetEditors(AssociationList list) Sets theEditorslist to belist.voidsetEditors(AssociationList inObjects, int state) Sets the entire Editors list to match the passed in AssociationList, sets the state of the EditorsvoidsetElementType(PropertyType inObject) Sets theElementTypeslist 0th element to beinObject.voidSets theElementTypeslist to belist.voidsetElementTypes(AssociationList list, int state) Sets theElementTypeslist to belist.voidsetSQLType(int inSQLType) Sets theSQLTypevalue and sets the state to MetadataState.LOCAL.voidsetSQLType(int inSQLType, int state) Sets theSQLTypeMetadata State.voidsetSQLType(String inSQLType) Sets theSQLTypevalue and sets the state to MetadataState.LOCAL.voidsetSQLType(String inSQLType, int state) Sets theSQLTypevalue and Metadata State.voidsetSQLTypeState(int state) Sets the Metadata State ofSQLType.voidsetStoredConfiguration(Text inObject) Sets theStoredConfigurationslist 0th element to beinObject.voidSets theStoredConfigurationslist to belist.voidsetStoredConfigurations(AssociationList list, int state) Sets theStoredConfigurationslist to belist.voidSets theTypedAttPropertieslist to belist.voidsetTypedAttProperties(AssociationList inObjects, int state) Sets the entire TypedAttProperties list to match the passed in AssociationList, sets the state of the TypedAttPropertiesvoidSets theTypedPropertieslist to belist.voidsetTypedProperties(AssociationList inObjects, int state) Sets the entire TypedProperties list to match the passed in AssociationList, sets the state of the TypedPropertiesvoidsetValidators(AssociationList list) Sets theValidatorslist to belist.voidsetValidators(AssociationList inObjects, int state) Sets the entire Validators list to match the passed in AssociationList, sets the state of the ValidatorsMethods 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.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_SQLTYPE_NAME
static final String ATTRIBUTE_SQLTYPE_NAMEConstant used for the name of the SQLType attribute.SQLType: This is an integer value that identifies the SQL type of the data.
- See Also:
-
ASSOCIATION_ARRAYTYPES_NAME
static final String ASSOCIATION_ARRAYTYPES_NAMEConstant used for the name of the ArrayTypes association.ArrayTypes: The arrays that use this PropertyType.
- See Also:
-
ASSOCIATION_CUSTOMIZERS_NAME
static final String ASSOCIATION_CUSTOMIZERS_NAMEConstant used for the name of the Customizers association.Customizers: The programs used to customize this object. A customizer is a standalone editor used to customize or edit a value. It does not reside inside a UI element as an editor does, but defines it's own window. If none exists on the entity, the customizer of the property type is returned.
- See Also:
-
ASSOCIATION_EDITORS_NAME
static final String ASSOCIATION_EDITORS_NAMEConstant used for the name of the Editors association.Editors: The programs that can edit this object. The editor is a component that can be placed inside a UI container, such as a property sheet, and that edits the property value.
- See Also:
-
ASSOCIATION_ELEMENTTYPE_NAME
static final String ASSOCIATION_ELEMENTTYPE_NAMEConstant used for the name of the ElementType association.ElementType: The PropertyType used in this array.
- See Also:
-
ASSOCIATION_STOREDCONFIGURATION_NAME
static final String ASSOCIATION_STOREDCONFIGURATION_NAMEConstant used for the name of the StoredConfiguration association.StoredConfiguration: The configuration information for this object.
- See Also:
-
ASSOCIATION_TYPEDATTPROPERTIES_NAME
static final String ASSOCIATION_TYPEDATTPROPERTIES_NAMEConstant used for the name of the TypedAttProperties association.TypedAttProperties: The attribute properties that are of this type.
- See Also:
-
ASSOCIATION_TYPEDPROPERTIES_NAME
static final String ASSOCIATION_TYPEDPROPERTIES_NAMEConstant used for the name of the TypedProperties association.TypedProperties: The properties that are of this type.
- See Also:
-
ASSOCIATION_VALIDATORS_NAME
static final String ASSOCIATION_VALIDATORS_NAMEConstant used for the name of the Validators association.Validators: The programs used to validate the value of this PropertyType.
- See Also:
-
-
Method Details
-
initializeRequiredObjects
void initializeRequiredObjects() throws RemoteException(S) This initializes the Required Objects(Roles) which are:- Specified by:
initializeRequiredObjectsin interfaceLocalizedType- Specified by:
initializeRequiredObjectsin interfaceMdObjectBaseUtil- 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:
ArrayTypes- Specified by:
initializePredObjectsin interfaceLocalizedType- Specified by:
initializePredObjectsin interfaceMdObjectBase- Specified by:
initializePredObjectsin interfaceRoot- Specified by:
initializePredObjectsin interfaceSecondaryType- Throws:
RemoteException- If error connecting/communicating to/with remote object.
-
getSQLType
int getSQLType() throws RemoteExceptionGets theintvalue ofSQLType- Returns:
- The
SQLType - Throws:
RemoteException- If error connecting/communicating to/with remote object.
-
getSQLTypeState
int getSQLTypeState() throws RemoteExceptionGets the Metadata State ofSQLType- Returns:
- The State.
- Throws:
RemoteException- If error connecting/communicating to/with remote object.
-
getArrayTypes
Gets the AssociationList ofArrayTypes- Returns:
- Returns the AssociationList of
ArrayTypeswhich can be of type:
PropertyType - Throws:
RemoteException- If error connecting/communicating to/with remote object.MdException- If error getting/setting part of the object.
-
getCustomizers
Gets the Association list ofCustomizers- Returns:
- The AssociationList of
Customizerswhich 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.
-
getEditors
Gets the Association list ofEditors- Returns:
- The AssociationList of
Editorswhich 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.
-
getElementTypes
Gets the Association list ofElementTypes- Returns:
- The AssociationList of
ElementTypeswhich can be of type:
PropertyType - Throws:
RemoteException- If error connecting/communicating to/with remote object.MdException- If error getting/setting part of the object.
-
getElementType
Gets thePropertyTypeforElementType- Returns:
- The
PropertyType(nullif not set ) ofElementTypewhich can be of type:
PropertyType - Throws:
RemoteException- If error connecting/communicating to/with remote object.MdException- If error getting/setting part of the object.
-
getStoredConfigurations
Gets the Association list ofStoredConfigurations- Returns:
- The AssociationList of
StoredConfigurationswhich 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.
-
getStoredConfiguration
Gets theTextforStoredConfiguration- Returns:
- The
Text(nullif not set ) ofStoredConfigurationwhich 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.
-
getTypedAttProperties
Gets the Association list ofTypedAttProperties- Returns:
- The AssociationList of
TypedAttPropertieswhich can be of type:
AttributeProperty - Throws:
RemoteException- If error connecting/communicating to/with remote object.MdException- If error getting/setting part of the object.
-
getTypedProperties
Gets the Association list ofTypedProperties- Returns:
- The AssociationList of
TypedPropertieswhich can be of type:
Property - Throws:
RemoteException- If error connecting/communicating to/with remote object.MdException- If error getting/setting part of the object.
-
getValidators
Gets the Association list ofValidators- Returns:
- The AssociationList of
Validatorswhich 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.
-
getArrayTypes
Gets the Associationlist ofArrayTypes- Parameters:
fGoToServer- boolean Get the value from the server.- Returns:
- Returns the AssociationList of
ArrayTypeswhich can be of type:
PropertyType - Throws:
RemoteException- If error connecting/communicating to/with remote object.MdException- If error getting/setting part of the object.
-
getCustomizers
Gets the Associationlist ofCustomizers- Parameters:
fGoToServer- boolean Get the value from the server.- Returns:
- Returns the
Customizerswhich 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.
-
getEditors
Gets the Associationlist ofEditors- Parameters:
fGoToServer- boolean Get the value from the server.- Returns:
- Returns the
Editorswhich 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.
-
getElementTypes
Gets the Associationlist ofElementTypes- Parameters:
fGoToServer- boolean Get the value from the server.- Returns:
- Returns the
ElementTypeswhich can be of type:
PropertyType - Throws:
RemoteException- If error connecting/communicating to/with remote object.MdException- If error getting/setting part of the object.
-
getStoredConfigurations
Gets the Associationlist ofStoredConfigurations- Parameters:
fGoToServer- boolean Get the value from the server.- Returns:
- Returns the
StoredConfigurationswhich 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.
-
getTypedAttProperties
Gets the Associationlist ofTypedAttProperties- Parameters:
fGoToServer- boolean Get the value from the server.- Returns:
- Returns the
TypedAttPropertieswhich can be of type:
AttributeProperty - Throws:
RemoteException- If error connecting/communicating to/with remote object.MdException- If error getting/setting part of the object.
-
getTypedProperties
Gets the Associationlist ofTypedProperties- Parameters:
fGoToServer- boolean Get the value from the server.- Returns:
- Returns the
TypedPropertieswhich can be of type:
Property - Throws:
RemoteException- If error connecting/communicating to/with remote object.MdException- If error getting/setting part of the object.
-
getValidators
Gets the Associationlist ofValidators- Parameters:
fGoToServer- boolean Get the value from the server.- Returns:
- Returns the
Validatorswhich 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.
-
setSQLType
void setSQLType(int inSQLType) throws RemoteException Sets theSQLTypevalue and sets the state to MetadataState.LOCAL.- Parameters:
inSQLType- int- Throws:
RemoteException- If error communicating with remote object.
-
setSQLType
void setSQLType(int inSQLType, int state) throws RemoteException Sets theSQLTypeMetadata State.- Parameters:
inSQLType- intstate- int- Throws:
RemoteException- If error communicating with remote object.
-
setSQLType
void setSQLType(String inSQLType) throws RemoteException Sets theSQLTypevalue and sets the state to MetadataState.LOCAL.- Parameters:
inSQLType- String- Throws:
RemoteException- If error communicating with remote object.
-
setSQLType
void setSQLType(String inSQLType, int state) throws RemoteException Sets theSQLTypevalue and Metadata State.- Parameters:
inSQLType- Stringstate- int- Throws:
RemoteException- If error communicating with remote object.
-
setSQLTypeState
void setSQLTypeState(int state) throws RemoteException Sets the Metadata State ofSQLType.- Parameters:
state- int- Throws:
RemoteException- If error communicating with remote object.
-
setArrayTypes
- Parameters:
list- AssociationList- Throws:
RemoteException- If error communicating with remote object.
-
setArrayTypes
Sets the entire AssociationList to match the passed in Vector, sets the state of the AssociationList- Parameters:
inObjects- AssociationListstate- int- Throws:
RemoteException- If error communicating with remote object.
-
setCustomizers
Sets theCustomizerslist to belist. 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.
-
setCustomizers
Sets the entire Customizers list to match the passed in AssociationList, sets the state of the Customizers- Parameters:
inObjects- AssociationListstate- int- Throws:
RemoteException- If error communicating with remote object.
-
setEditors
Sets theEditorslist to belist. 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.
-
setEditors
Sets the entire Editors list to match the passed in AssociationList, sets the state of the Editors- Parameters:
inObjects- AssociationListstate- int- Throws:
RemoteException- If error communicating with remote object.
-
setElementTypes
- Parameters:
list- AssociationList- Throws:
RemoteException- If error communicating with remote object.
-
setElementTypes
- Parameters:
list- AssociationListstate- int- Throws:
RemoteException- If error communicating with remote object.
-
setElementType
Sets theElementTypeslist 0th element to beinObject.- Parameters:
inObject- PropertyType- Throws:
RemoteException- If error communicating with remote object.
-
setStoredConfigurations
Sets theStoredConfigurationslist to belist. Objects of which can be of type:
Text
TextStore
SASCatalogEntry
File
ArchiveFile
ArchiveEntry
Document- Parameters:
list- AssociationList- Throws:
RemoteException- If error communicating with remote object.
-
setStoredConfigurations
Sets theStoredConfigurationslist to belist. Objects of which can be of type:
Text
TextStore
SASCatalogEntry
File
ArchiveFile
ArchiveEntry
Document- Parameters:
list- AssociationListstate- int- Throws:
RemoteException- If error communicating with remote object.
-
setStoredConfiguration
Sets theStoredConfigurationslist 0th element to beinObject.- Parameters:
inObject- Text- Throws:
RemoteException- If error communicating with remote object.
-
setTypedAttProperties
- Parameters:
list- AssociationList- Throws:
RemoteException- If error communicating with remote object.
-
setTypedAttProperties
Sets the entire TypedAttProperties list to match the passed in AssociationList, sets the state of the TypedAttProperties- Parameters:
inObjects- AssociationListstate- int- Throws:
RemoteException- If error communicating with remote object.
-
setTypedProperties
- Parameters:
list- AssociationList- Throws:
RemoteException- If error communicating with remote object.
-
setTypedProperties
Sets the entire TypedProperties list to match the passed in AssociationList, sets the state of the TypedProperties- Parameters:
inObjects- AssociationListstate- int- Throws:
RemoteException- If error communicating with remote object.
-
setValidators
Sets theValidatorslist to belist. 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.
-
setValidators
Sets the entire Validators list to match the passed in AssociationList, sets the state of the Validators- Parameters:
inObjects- AssociationListstate- int- Throws:
RemoteException- If error communicating with remote object.
-