|
| Metadata |
|
| |||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||||||
public interface ContentLocation
The supertype for all types that provide location information.
Attributes of ContentLocation are:
Associations of ContentLocation 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(); ContentLocation myObject = (ContentLocation) factory.createComplexMetadataObject(objectStore, "ContentLocation_Object", MetadataObjects.CONTENTLOCATION, "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_ASSOCIATEDCONTENTTYPE_NAME
Constant used for the name of the AssociatedContentType association. |
static java.lang.String |
ASSOCIATION_FILEREFS_NAME
Constant used for the name of the FileRefs association. |
static java.lang.String |
ASSOCIATION_REPORTS_NAME
Constant used for the name of the Reports association. |
static java.lang.String |
ASSOCIATION_TSASSOCIATEDNAMESPACE_NAME
Constant used for the name of the TSAssociatedNamespace association. |
static java.lang.String |
ASSOCIATION_UNITOFTIMES_NAME
Constant used for the name of the UnitofTimes association. |
| Fields inherited from interface com.sas.metadata.remote.DeployedDataPackage |
|---|
ASSOCIATION_ALIASES_NAME, ASSOCIATION_ALIASFOR_NAME, ASSOCIATION_DEPLOYEDCOMPONENTS_NAME, ASSOCIATION_TABLECOLLECTIONS_NAME, ASSOCIATION_USEDBYPACKAGES_NAME, ASSOCIATION_USINGPACKAGES_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 | |
|---|---|
abstract ContentType |
getAssociatedContentType()
Gets the ContentType for AssociatedContentType |
abstract AssociationList |
getAssociatedContentTypes()
Gets the AssociationList of AssociatedContentTypes |
abstract AssociationList |
getAssociatedContentTypes(boolean fGoToServer)
Gets the Associationlist of AssociatedContentTypes |
abstract AssociationList |
getFileRefs()
Gets the Association list of FileRefs |
abstract AssociationList |
getFileRefs(boolean fGoToServer)
Gets the Associationlist of FileRefs |
abstract AssociationList |
getReports()
Gets the Association list of Reports |
abstract AssociationList |
getReports(boolean fGoToServer)
Gets the Associationlist of Reports |
abstract TSNamespace |
getTSAssociatedNamespace()
Gets the TSNamespace for TSAssociatedNamespace |
abstract AssociationList |
getTSAssociatedNamespaces()
Gets the Association list of TSAssociatedNamespaces |
abstract AssociationList |
getTSAssociatedNamespaces(boolean fGoToServer)
Gets the Associationlist of TSAssociatedNamespaces |
abstract AssociationList |
getUnitofTimes()
Gets the Association list of UnitofTimes |
abstract AssociationList |
getUnitofTimes(boolean fGoToServer)
Gets the Associationlist of UnitofTimes |
abstract void |
initializePredObjects()
(S) Adds the Associated objects to the predObjects which are: AssociatedContentType |
abstract void |
initializeRequiredObjects()
(S) This initializes the Required Objects(Roles) which are: |
abstract void |
setAssociatedContentType(ContentType inObject)
Sets the AssociatedContentTypes list 0th element to be inObject. |
abstract void |
setAssociatedContentTypes(AssociationList list)
Sets the AssociatedContentTypes list to be list. |
abstract void |
setAssociatedContentTypes(AssociationList list,
int state)
Sets the AssociatedContentTypes list to be list. |
abstract void |
setFileRefs(AssociationList list)
Sets the FileRefs list to be list. |
abstract void |
setFileRefs(AssociationList inObjects,
int state)
Sets the entire FileRefs list to match the passed in AssociationList, sets the state of the FileRefs |
abstract void |
setReports(AssociationList list)
Sets the Reports list to be list. |
abstract void |
setReports(AssociationList inObjects,
int state)
Sets the entire Reports list to match the passed in AssociationList, sets the state of the Reports |
abstract void |
setTSAssociatedNamespace(TSNamespace inObject)
Sets the TSAssociatedNamespaces list 0th element to be inObject. |
abstract void |
setTSAssociatedNamespaces(AssociationList list)
Sets the TSAssociatedNamespaces list to be list. |
abstract void |
setTSAssociatedNamespaces(AssociationList list,
int state)
Sets the TSAssociatedNamespaces list to be list. |
abstract void |
setUnitofTimes(AssociationList list)
Sets the UnitofTimes list to be list. |
abstract void |
setUnitofTimes(AssociationList inObjects,
int state)
Sets the entire UnitofTimes list to match the passed in AssociationList, sets the state of the UnitofTimes |
| Methods inherited from interface com.sas.metadata.remote.DeployedDataPackage |
|---|
getAliases, getAliases, getAliasFor, getAliasFors, getAliasFors, getDeployedComponents, getDeployedComponents, getTableCollections, getTableCollections, getUsedByPackages, getUsedByPackages, getUsingPackages, getUsingPackages, setAliases, setAliases, setAliasFor, setAliasFors, setAliasFors, setDeployedComponents, setDeployedComponents, setTableCollections, setTableCollections, setUsedByPackages, setUsedByPackages, setUsingPackages, setUsingPackages |
| 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_ASSOCIATEDCONTENTTYPE_NAME
AssociatedContentType: A description of the content.
static final java.lang.String ASSOCIATION_FILEREFS_NAME
FileRefs: The filerefs that use this ContentLocation.
static final java.lang.String ASSOCIATION_REPORTS_NAME
Reports: The reports that are stored or transmitted using this ContentLocation.
static final java.lang.String ASSOCIATION_TSASSOCIATEDNAMESPACE_NAME
TSAssociatedNamespace: The associated table server namespace.
static final java.lang.String ASSOCIATION_UNITOFTIMES_NAME
UnitofTimes: The UnitofTime objects associated with this content. This may represent refresh times for the content.
| Method Detail |
|---|
void initializeRequiredObjects()
throws java.rmi.RemoteException
initializeRequiredObjects in interface DeployedDataPackageinitializeRequiredObjects in interface MdObjectBaseUtilinitializeRequiredObjects in interface PrimaryTypeinitializeRequiredObjects in interface Rootjava.rmi.RemoteException - If error connecting/communicating to/with remote object.
void initializePredObjects()
throws java.rmi.RemoteException
AssociatedContentType
initializePredObjects in interface DeployedDataPackageinitializePredObjects in interface MdObjectBaseinitializePredObjects in interface PrimaryTypeinitializePredObjects in interface Rootjava.rmi.RemoteException - If error connecting/communicating to/with remote object.
AssociationList getAssociatedContentTypes()
throws java.rmi.RemoteException,
MdException
AssociatedContentTypes
AssociatedContentTypes which can be of type: java.rmi.RemoteException - If error connecting/communicating to/with remote object.
MdException
ContentType getAssociatedContentType()
throws java.rmi.RemoteException,
MdException
ContentType for AssociatedContentType
ContentType ( null if not set) of AssociatedContentTypewhich 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 getFileRefs()
throws java.rmi.RemoteException,
MdException
FileRefs
FileRefs 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 getReports()
throws java.rmi.RemoteException,
MdException
Reports
Reports 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 getTSAssociatedNamespaces()
throws java.rmi.RemoteException,
MdException
TSAssociatedNamespaces
TSAssociatedNamespaces 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.
TSNamespace getTSAssociatedNamespace()
throws java.rmi.RemoteException,
MdException
TSNamespace for TSAssociatedNamespace
TSNamespace ( null if not set ) of TSAssociatedNamespace 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 getUnitofTimes()
throws java.rmi.RemoteException,
MdException
UnitofTimes
UnitofTimes 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 getAssociatedContentTypes(boolean fGoToServer)
throws java.rmi.RemoteException,
MdException
AssociatedContentTypes
fGoToServer - boolean Get the value from the server.
AssociatedContentTypes 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 getFileRefs(boolean fGoToServer)
throws java.rmi.RemoteException,
MdException
FileRefs
fGoToServer - boolean Get the value from the server.
FileRefs 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 getReports(boolean fGoToServer)
throws java.rmi.RemoteException,
MdException
Reports
fGoToServer - boolean Get the value from the server.
Reports 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 getTSAssociatedNamespaces(boolean fGoToServer)
throws java.rmi.RemoteException,
MdException
TSAssociatedNamespaces
fGoToServer - boolean Get the value from the server.
TSAssociatedNamespaces 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 getUnitofTimes(boolean fGoToServer)
throws java.rmi.RemoteException,
MdException
UnitofTimes
fGoToServer - boolean Get the value from the server.
UnitofTimes 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 setAssociatedContentTypes(AssociationList list)
throws java.rmi.RemoteException
AssociatedContentTypes list to be list. Object of which can be of type:
list - AssociationList
java.rmi.RemoteException - If error communicating with remote object.
void setAssociatedContentTypes(AssociationList list,
int state)
throws java.rmi.RemoteException
AssociatedContentTypes list to be list. Object of which can be of type:
list - AssociationListstate - int
java.rmi.RemoteException - If error communicating with remote object.
void setAssociatedContentType(ContentType inObject)
throws java.rmi.RemoteException
AssociatedContentTypes list 0th element to be inObject.
inObject - ContentType
java.rmi.RemoteException - If error communicating with remote object.
void setFileRefs(AssociationList list)
throws java.rmi.RemoteException
FileRefs list to be list. Objects of which can be of type:
list - AssociationList
java.rmi.RemoteException - If error communicating with remote object.
void setFileRefs(AssociationList inObjects,
int state)
throws java.rmi.RemoteException
inObjects - AssociationListstate - int
java.rmi.RemoteException - If error communicating with remote object.
void setReports(AssociationList list)
throws java.rmi.RemoteException
Reports list to be list. Objects of which can be of type:
list - AssociationList
java.rmi.RemoteException - If error communicating with remote object.
void setReports(AssociationList inObjects,
int state)
throws java.rmi.RemoteException
inObjects - AssociationListstate - int
java.rmi.RemoteException - If error communicating with remote object.
void setTSAssociatedNamespaces(AssociationList list)
throws java.rmi.RemoteException
TSAssociatedNamespaces list to be list. Objects of which can be of type:
list - AssociationList
java.rmi.RemoteException - If error communicating with remote object.
void setTSAssociatedNamespaces(AssociationList list,
int state)
throws java.rmi.RemoteException
TSAssociatedNamespaces list to be list. Objects of which can be of type:
list - AssociationListstate - int
java.rmi.RemoteException - If error communicating with remote object.
void setTSAssociatedNamespace(TSNamespace inObject)
throws java.rmi.RemoteException
TSAssociatedNamespaces list 0th element to be inObject.
inObject - TSNamespace
java.rmi.RemoteException - If error communicating with remote object.
void setUnitofTimes(AssociationList list)
throws java.rmi.RemoteException
UnitofTimes list to be list. Objects of which can be of type:
list - AssociationList
java.rmi.RemoteException - If error communicating with remote object.
void setUnitofTimes(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 | |||||||||||||