Package com.sas.metadata.remote
Interface SASPassword
- All Superinterfaces:
CMetadata,MdObjectBase,MdObjectBaseUtil,MdObjectBaseXML,Remote,Root,SecondaryType
Represents the storage of SAS passwords for SAS tables or connections. There will be one of these for each type of password associated with a file.
Example: create a SASPassword with name "SASPassword_Object", in repository "AAAAAAAA".
Attributes of SASPassword are:
Associations of SASPassword are:
AssociatedSecuredLibraryProtectedConnectionsProtectedPassthrusProtectedTableTSAssociatedNamespace
Usage
To create an instance of this SASPassword, use thefactory
create methods. Example: create a SASPassword with name "SASPassword_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(); SASPassword myObject = (SASPassword) factory.createComplexMetadataObject(objectStore, "SASPassword_Object", MetadataObjects.SASPASSWORD, "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 AssociatedSecuredLibrary association.static final StringConstant used for the name of the ProtectedConnections association.static final StringConstant used for the name of the ProtectedPassthrus association.static final StringConstant used for the name of the ProtectedTable association.static final StringConstant used for the name of the TSAssociatedNamespace association.static final StringConstant used for the name of the Encryption attribute.static final StringConstant used for the name of the Password attribute.static final StringConstant used for the name of the Type attribute.Fields 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 theSecuredLibraryforAssociatedSecuredLibraryGets the AssociationList ofAssociatedSecuredLibrarysgetAssociatedSecuredLibrarys(boolean fGoToServer) Gets the Associationlist ofAssociatedSecuredLibrarysStringGets theStringvalue ofEncryptionintGets the maximum length ofEncryptionintGets the Metadata State ofEncryptionStringGets theStringvalue ofPasswordintGets the maximum length ofPasswordintGets the Metadata State ofPasswordGets the Association list ofProtectedConnectionsgetProtectedConnections(boolean fGoToServer) Gets the Associationlist ofProtectedConnectionsGets the Association list ofProtectedPassthrusgetProtectedPassthrus(boolean fGoToServer) Gets the Associationlist ofProtectedPassthrusGets thePhysicalTableforProtectedTableGets the Association list ofProtectedTablesgetProtectedTables(boolean fGoToServer) Gets the Associationlist ofProtectedTablesGets theTSNamespaceforTSAssociatedNamespaceGets the Association list ofTSAssociatedNamespacesgetTSAssociatedNamespaces(boolean fGoToServer) Gets the Associationlist ofTSAssociatedNamespacesStringgetType()Gets theStringvalue ofTypeintGets the maximum length ofTypeintGets the Metadata State ofTypevoid(S) Adds the Associated objects to the predObjects which are:
AssociatedSecuredLibraryvoid(S) This initializes the Required Objects(Roles) which are:voidsetAssociatedSecuredLibrary(SecuredLibrary inObject) Sets theAssociatedSecuredLibraryslist 0th element to beinObject.voidSets theAssociatedSecuredLibraryslist to belist.voidsetAssociatedSecuredLibrarys(AssociationList list, int state) Sets theAssociatedSecuredLibraryslist to belist.voidsetEncryption(String inEncryption) Sets theEncryptionvalue and sets the state to MetadataState.LOCAL.voidsetEncryption(String inEncryption, int state) Sets theEncryptionMetadata State.voidsetEncryptionState(int state) Sets the Metadata State ofEncryption.voidsetPassword(String inPassword) Sets thePasswordvalue and sets the state to MetadataState.LOCAL.voidsetPassword(String inPassword, int state) Sets thePasswordMetadata State.voidsetPasswordState(int state) Sets the Metadata State ofPassword.voidSets theProtectedConnectionslist to belist.voidsetProtectedConnections(AssociationList inObjects, int state) Sets the entire ProtectedConnections list to match the passed in AssociationList, sets the state of the ProtectedConnectionsvoidSets theProtectedPassthruslist to belist.voidsetProtectedPassthrus(AssociationList inObjects, int state) Sets the entire ProtectedPassthrus list to match the passed in AssociationList, sets the state of the ProtectedPassthrusvoidsetProtectedTable(PhysicalTable inObject) Sets theProtectedTableslist 0th element to beinObject.voidSets theProtectedTableslist to belist.voidsetProtectedTables(AssociationList list, int state) Sets theProtectedTableslist to belist.voidsetTSAssociatedNamespace(TSNamespace inObject) Sets theTSAssociatedNamespaceslist 0th element to beinObject.voidSets theTSAssociatedNamespaceslist to belist.voidsetTSAssociatedNamespaces(AssociationList list, int state) Sets theTSAssociatedNamespaceslist to belist.voidsetType(String inType) Sets theTypevalue and sets the state to MetadataState.LOCAL.voidsetType(String inType, int state) Sets theTypeMetadata State.voidsetTypeState(int state) Sets the Metadata State ofType.Methods 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_PASSWORD_NAME
static final String ATTRIBUTE_PASSWORD_NAMEConstant used for the name of the Password attribute.Password: Password
- See Also:
-
ATTRIBUTE_TYPE_NAME
static final String ATTRIBUTE_TYPE_NAMEConstant used for the name of the Type attribute.Type: The type of the SAS password for the table. Values are: READ, WRITE, ALTER, ALL, SASPW
- See Also:
-
ATTRIBUTE_ENCRYPTION_NAME
static final String ATTRIBUTE_ENCRYPTION_NAMEConstant used for the name of the Encryption attribute.Encryption: Encryption
- See Also:
-
ASSOCIATION_ASSOCIATEDSECUREDLIBRARY_NAME
static final String ASSOCIATION_ASSOCIATEDSECUREDLIBRARY_NAMEConstant used for the name of the AssociatedSecuredLibrary association.AssociatedSecuredLibrary: The associated secured library that uses this password.
- See Also:
-
ASSOCIATION_PROTECTEDCONNECTIONS_NAME
static final String ASSOCIATION_PROTECTEDCONNECTIONS_NAMEConstant used for the name of the ProtectedConnections association.ProtectedConnections: The connection for protected servers.
- See Also:
-
ASSOCIATION_PROTECTEDPASSTHRUS_NAME
static final String ASSOCIATION_PROTECTEDPASSTHRUS_NAMEConstant used for the name of the ProtectedPassthrus association.ProtectedPassthrus: The connection for protected passthrus.
- See Also:
-
ASSOCIATION_PROTECTEDTABLE_NAME
static final String ASSOCIATION_PROTECTEDTABLE_NAMEConstant used for the name of the ProtectedTable association.ProtectedTable: The table associated with this password.
- See Also:
-
ASSOCIATION_TSASSOCIATEDNAMESPACE_NAME
static final String ASSOCIATION_TSASSOCIATEDNAMESPACE_NAMEConstant used for the name of the TSAssociatedNamespace association.TSAssociatedNamespace: The table server namespaces that use this access key.
- See Also:
-
-
Method Details
-
initializeRequiredObjects
void initializeRequiredObjects() throws RemoteException(S) This initializes the Required Objects(Roles) which are:- 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:
AssociatedSecuredLibrary- Specified by:
initializePredObjectsin interfaceMdObjectBase- Specified by:
initializePredObjectsin interfaceRoot- Specified by:
initializePredObjectsin interfaceSecondaryType- Throws:
RemoteException- If error connecting/communicating to/with remote object.
-
getPassword
String getPassword() throws RemoteExceptionGets theStringvalue ofPassword- Returns:
- The
Password - Throws:
RemoteException- If error connecting/communicating to/with remote object.
-
getPasswordState
int getPasswordState() throws RemoteExceptionGets the Metadata State ofPassword- Returns:
- The State.
- Throws:
RemoteException- If error connecting/communicating to/with remote object.
-
getPasswordMaxLength
int getPasswordMaxLength() throws RemoteExceptionGets the maximum length ofPassword- Returns:
- The max size
- Throws:
RemoteException- If error connecting/communicating to/with remote object.
-
getType
String getType() throws RemoteExceptionGets theStringvalue ofType- Returns:
- The
Type - Throws:
RemoteException- If error connecting/communicating to/with remote object.
-
getTypeState
int getTypeState() throws RemoteExceptionGets the Metadata State ofType- Returns:
- The State.
- Throws:
RemoteException- If error connecting/communicating to/with remote object.
-
getTypeMaxLength
int getTypeMaxLength() throws RemoteExceptionGets the maximum length ofType- Returns:
- The max size
- Throws:
RemoteException- If error connecting/communicating to/with remote object.
-
getEncryption
String getEncryption() throws RemoteExceptionGets theStringvalue ofEncryption- Returns:
- The
Encryption - Throws:
RemoteException- If error connecting/communicating to/with remote object.
-
getEncryptionState
int getEncryptionState() throws RemoteExceptionGets the Metadata State ofEncryption- Returns:
- The State.
- Throws:
RemoteException- If error connecting/communicating to/with remote object.
-
getEncryptionMaxLength
int getEncryptionMaxLength() throws RemoteExceptionGets the maximum length ofEncryption- Returns:
- The max size
- Throws:
RemoteException- If error connecting/communicating to/with remote object.
-
getAssociatedSecuredLibrarys
Gets the AssociationList ofAssociatedSecuredLibrarys- Returns:
- Returns the AssociationList of
AssociatedSecuredLibraryswhich can be of type:
SecuredLibrary - Throws:
RemoteException- If error connecting/communicating to/with remote object.MdException
-
getAssociatedSecuredLibrary
Gets theSecuredLibraryforAssociatedSecuredLibrary- Returns:
- The
SecuredLibrary(nullif not set) ofAssociatedSecuredLibrarywhich can be of type:
SecuredLibrary - Throws:
RemoteException- If error connecting/communicating to/with remote object.MdException- If error getting/setting part of the object.
-
getProtectedConnections
Gets the Association list ofProtectedConnections- Returns:
- The AssociationList of
ProtectedConnectionswhich can be of type:
Connection
SASClientConnection
OpenClientConnection
TCPIPConnection
COMConnection - Throws:
RemoteException- If error connecting/communicating to/with remote object.MdException- If error getting/setting part of the object.
-
getProtectedPassthrus
Gets the Association list ofProtectedPassthrus- Returns:
- The AssociationList of
ProtectedPassthruswhich can be of type:
Connection
SASClientConnection
OpenClientConnection
TCPIPConnection
COMConnection - Throws:
RemoteException- If error connecting/communicating to/with remote object.MdException- If error getting/setting part of the object.
-
getProtectedTables
Gets the Association list ofProtectedTables- Returns:
- The AssociationList of
ProtectedTableswhich 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.
-
getProtectedTable
Gets thePhysicalTableforProtectedTable- Returns:
- The
PhysicalTable(nullif not set ) ofProtectedTablewhich 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.
-
getTSAssociatedNamespaces
Gets the Association list ofTSAssociatedNamespaces- Returns:
- The AssociationList of
TSAssociatedNamespaceswhich can be of type:
TSNamespace - Throws:
RemoteException- If error connecting/communicating to/with remote object.MdException- If error getting/setting part of the object.
-
getTSAssociatedNamespace
Gets theTSNamespaceforTSAssociatedNamespace- Returns:
- The
TSNamespace(nullif not set ) ofTSAssociatedNamespacewhich can be of type:
TSNamespace - Throws:
RemoteException- If error connecting/communicating to/with remote object.MdException- If error getting/setting part of the object.
-
getAssociatedSecuredLibrarys
AssociationList getAssociatedSecuredLibrarys(boolean fGoToServer) throws RemoteException, MdException Gets the Associationlist ofAssociatedSecuredLibrarys- Parameters:
fGoToServer- boolean Get the value from the server.- Returns:
- Returns the AssociationList of
AssociatedSecuredLibraryswhich can be of type:
SecuredLibrary - Throws:
RemoteException- If error connecting/communicating to/with remote object.MdException- If error getting/setting part of the object.
-
getProtectedConnections
Gets the Associationlist ofProtectedConnections- Parameters:
fGoToServer- boolean Get the value from the server.- Returns:
- Returns the
ProtectedConnectionswhich can be of type:
Connection
SASClientConnection
OpenClientConnection
TCPIPConnection
COMConnection - Throws:
RemoteException- If error connecting/communicating to/with remote object.MdException- If error getting/setting part of the object.
-
getProtectedPassthrus
Gets the Associationlist ofProtectedPassthrus- Parameters:
fGoToServer- boolean Get the value from the server.- Returns:
- Returns the
ProtectedPassthruswhich can be of type:
Connection
SASClientConnection
OpenClientConnection
TCPIPConnection
COMConnection - Throws:
RemoteException- If error connecting/communicating to/with remote object.MdException- If error getting/setting part of the object.
-
getProtectedTables
Gets the Associationlist ofProtectedTables- Parameters:
fGoToServer- boolean Get the value from the server.- Returns:
- Returns the
ProtectedTableswhich 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.
-
getTSAssociatedNamespaces
Gets the Associationlist ofTSAssociatedNamespaces- Parameters:
fGoToServer- boolean Get the value from the server.- Returns:
- Returns the
TSAssociatedNamespaceswhich can be of type:
TSNamespace - Throws:
RemoteException- If error connecting/communicating to/with remote object.MdException- If error getting/setting part of the object.
-
setPassword
void setPassword(String inPassword) throws RemoteException Sets thePasswordvalue and sets the state to MetadataState.LOCAL.- Parameters:
inPassword- String- Throws:
RemoteException- If error communicating with remote object.
-
setPassword
void setPassword(String inPassword, int state) throws RemoteException Sets thePasswordMetadata State.- Parameters:
inPassword- Stringstate- int- Throws:
RemoteException- If error communicating with remote object.
-
setPasswordState
void setPasswordState(int state) throws RemoteException Sets the Metadata State ofPassword.- Parameters:
state- int- Throws:
RemoteException- If error communicating with remote object.
-
setType
void setType(String inType) throws RemoteException Sets theTypevalue and sets the state to MetadataState.LOCAL.- Parameters:
inType- String- Throws:
RemoteException- If error communicating with remote object.
-
setType
void setType(String inType, int state) throws RemoteException Sets theTypeMetadata State.- Parameters:
inType- Stringstate- int- Throws:
RemoteException- If error communicating with remote object.
-
setTypeState
void setTypeState(int state) throws RemoteException Sets the Metadata State ofType.- Parameters:
state- int- Throws:
RemoteException- If error communicating with remote object.
-
setEncryption
void setEncryption(String inEncryption) throws RemoteException Sets theEncryptionvalue and sets the state to MetadataState.LOCAL.- Parameters:
inEncryption- String- Throws:
RemoteException- If error communicating with remote object.
-
setEncryption
void setEncryption(String inEncryption, int state) throws RemoteException Sets theEncryptionMetadata State.- Parameters:
inEncryption- Stringstate- int- Throws:
RemoteException- If error communicating with remote object.
-
setEncryptionState
void setEncryptionState(int state) throws RemoteException Sets the Metadata State ofEncryption.- Parameters:
state- int- Throws:
RemoteException- If error communicating with remote object.
-
setAssociatedSecuredLibrarys
- Parameters:
list- AssociationList- Throws:
RemoteException- If error communicating with remote object.
-
setAssociatedSecuredLibrarys
- Parameters:
list- AssociationListstate- int- Throws:
RemoteException- If error communicating with remote object.
-
setAssociatedSecuredLibrary
Sets theAssociatedSecuredLibraryslist 0th element to beinObject.- Parameters:
inObject- SecuredLibrary- Throws:
RemoteException- If error communicating with remote object.
-
setProtectedConnections
Sets theProtectedConnectionslist to belist. Objects of which can be of type:
Connection
SASClientConnection
OpenClientConnection
TCPIPConnection
COMConnection- Parameters:
list- AssociationList- Throws:
RemoteException- If error communicating with remote object.
-
setProtectedConnections
Sets the entire ProtectedConnections list to match the passed in AssociationList, sets the state of the ProtectedConnections- Parameters:
inObjects- AssociationListstate- int- Throws:
RemoteException- If error communicating with remote object.
-
setProtectedPassthrus
Sets theProtectedPassthruslist to belist. Objects of which can be of type:
Connection
SASClientConnection
OpenClientConnection
TCPIPConnection
COMConnection- Parameters:
list- AssociationList- Throws:
RemoteException- If error communicating with remote object.
-
setProtectedPassthrus
Sets the entire ProtectedPassthrus list to match the passed in AssociationList, sets the state of the ProtectedPassthrus- Parameters:
inObjects- AssociationListstate- int- Throws:
RemoteException- If error communicating with remote object.
-
setProtectedTables
Sets theProtectedTableslist to belist. Objects of which can be of type:
PhysicalTable
WorkTable
SecuredTable- Parameters:
list- AssociationList- Throws:
RemoteException- If error communicating with remote object.
-
setProtectedTables
Sets theProtectedTableslist to belist. Objects of which can be of type:
PhysicalTable
WorkTable
SecuredTable- Parameters:
list- AssociationListstate- int- Throws:
RemoteException- If error communicating with remote object.
-
setProtectedTable
Sets theProtectedTableslist 0th element to beinObject.- Parameters:
inObject- PhysicalTable- Throws:
RemoteException- If error communicating with remote object.
-
setTSAssociatedNamespaces
- Parameters:
list- AssociationList- Throws:
RemoteException- If error communicating with remote object.
-
setTSAssociatedNamespaces
- Parameters:
list- AssociationListstate- int- Throws:
RemoteException- If error communicating with remote object.
-
setTSAssociatedNamespace
Sets theTSAssociatedNamespaceslist 0th element to beinObject.- Parameters:
inObject- TSNamespace- Throws:
RemoteException- If error communicating with remote object.
-