public class OCFMetadataRESTServices extends Object
| Constructor and Description |
|---|
OCFMetadataRESTServices()
Default constructor
|
| Modifier and Type | Method and Description |
|---|---|
CommentsResponse |
getAssetCommentReplies(String serverName,
String serviceURLName,
String userId,
String assetGUID,
String commentGUID,
int elementStart,
int maxElements)
Returns the list of replies to a comment.
|
CommentsResponse |
getAssetComments(String serverName,
String serviceURLName,
String userId,
String assetGUID,
int elementStart,
int maxElements)
Returns the list of comments for the asset.
|
GUIDResponse |
getAssetForConnectionGUID(String serverName,
String serviceURLName,
String userId,
String connectionGUID)
Returns the unique identifier for the asset connected to the connection.
|
AssetResponse |
getAssetSummary(String serverName,
String serviceURLName,
String userId,
String assetGUID)
Returns the basic information about the asset.
|
CertificationsResponse |
getCertifications(String serverName,
String serviceURLName,
String userId,
String assetGUID,
int elementStart,
int maxElements)
Returns the list of certifications for the asset.
|
AssetResponse |
getConnectedAssetSummary(String serverName,
String serviceURLName,
String userId,
String assetGUID,
String connectionGUID)
Returns the basic information about the asset.
|
ConnectionResponse |
getConnectionByGUID(String serverName,
String serviceURLName,
String userId,
String guid)
Returns the connection object corresponding to the supplied connection GUID.
|
ConnectionResponse |
getConnectionByName(String serverName,
String serviceURLName,
String userId,
String name)
Returns the connection object corresponding to the supplied connection name.
|
ConnectionResponse |
getConnectionForAsset(String serverName,
String serviceURLName,
String userId,
String assetGUID)
Returns the connection corresponding to the supplied asset GUID.
|
ConnectionsResponse |
getConnections(String serverName,
String serviceURLName,
String userId,
String assetGUID,
int elementStart,
int maxElements)
Returns the list of connections for the asset.
|
ExternalIdentifiersResponse |
getExternalIdentifiers(String serverName,
String serviceURLName,
String userId,
String assetGUID,
int elementStart,
int maxElements)
Returns the list of external identifiers for the asset.
|
ExternalReferencesResponse |
getExternalReferences(String serverName,
String serviceURLName,
String userId,
String assetGUID,
int elementStart,
int maxElements)
Returns the list of external references for the asset.
|
InformalTagsResponse |
getInformalTags(String serverName,
String serviceURLName,
String userId,
String assetGUID,
int elementStart,
int maxElements)
Returns the list of informal tags for the asset.
|
LocationsResponse |
getKnownLocations(String serverName,
String serviceURLName,
String userId,
String assetGUID,
int elementStart,
int maxElements)
Returns the list of known locations for the asset.
|
LicensesResponse |
getLicenses(String serverName,
String serviceURLName,
String userId,
String assetGUID,
int elementStart,
int maxElements)
Returns the list of licenses for the asset.
|
LikesResponse |
getLikes(String serverName,
String serviceURLName,
String userId,
String assetGUID,
int elementStart,
int maxElements)
Returns the list of likes for the asset.
|
MoreInformationResponse |
getMoreInformation(String serverName,
String serviceURLName,
String userId,
String elementGUID,
int elementStart,
int maxElements)
Returns the list of related Referenceables that provide more information for this asset, schema, ...
|
NoteLogsResponse |
getNoteLogs(String serverName,
String serviceURLName,
String userId,
String assetGUID,
int elementStart,
int maxElements)
Returns the list of note logs for the asset.
|
NotesResponse |
getNotes(String serverName,
String serviceURLName,
String userId,
String noteLogGUID,
int elementStart,
int maxElements)
Returns the list of notes for a note log.
|
RatingsResponse |
getRatings(String serverName,
String serviceURLName,
String userId,
String assetGUID,
int elementStart,
int maxElements)
Returns the list of ratings for the asset.
|
RelatedAssetsResponse |
getRelatedAssets(String serverName,
String serviceURLName,
String userId,
String assetGUID,
int elementStart,
int maxElements)
Returns the list of related assets for the asset.
|
RelatedMediaReferencesResponse |
getRelatedMediaReferences(String serverName,
String serviceURLName,
String userId,
String assetGUID,
int elementStart,
int maxElements)
Returns the list of related media references for the asset.
|
SchemaAttributesResponse |
getSchemaAttributes(String serverName,
String serviceURLName,
String userId,
String schemaTypeGUID,
int elementStart,
int maxElements)
Returns a list of schema attributes for a schema type.
|
public ConnectionResponse getConnectionByGUID(String serverName, String serviceURLName, String userId, String guid)
serverName - name of the server instances for this requestserviceURLName - String name of the service that created the connector that issued this request.userId - userId of user making request.guid - the unique id for the connection within the property server.public ConnectionResponse getConnectionByName(String serverName, String serviceURLName, String userId, String name)
serverName - name of the server instances for this requestserviceURLName - String name of the service that created the connector that issued this request.userId - userId of user making request.name - this may be the qualifiedName or displayName of the connection.public GUIDResponse getAssetForConnectionGUID(String serverName, String serviceURLName, String userId, String connectionGUID)
serverName - name of the server instances for this requestserviceURLName - String name of the service that created the connector that issued this request.userId - the userId of the requesting user.connectionGUID - uniqueId for the connection.public ConnectionResponse getConnectionForAsset(String serverName, String serviceURLName, String userId, String assetGUID)
serverName - name of the server instances for this requestserviceURLName - String name of the service that created the connector that issued this request.userId - userId of user making request.assetGUID - the unique id for the asset within the metadata repository.public AssetResponse getConnectedAssetSummary(String serverName, String serviceURLName, String userId, String assetGUID, String connectionGUID)
serverName - name of the server.serviceURLName - String name of the service that created the connector that issued this request.userId - String userId of user making request.assetGUID - String unique id for asset.connectionGUID - unique id for connection used to access asset.public AssetResponse getAssetSummary(String serverName, String serviceURLName, String userId, String assetGUID)
serverName - String name of server instance to call.serviceURLName - String name of the service that created the connector that issued this request.userId - String userId of user making request.assetGUID - String unique id for asset.public CertificationsResponse getCertifications(String serverName, String serviceURLName, String userId, String assetGUID, int elementStart, int maxElements)
serverName - String name of server instance to call.serviceURLName - String name of the service that created the connector that issued this request.userId - String userId of user making request.assetGUID - String unique id for asset.elementStart - int starting position for fist returned element.maxElements - int maximum number of elements to return on the call.public CommentsResponse getAssetComments(String serverName, String serviceURLName, String userId, String assetGUID, int elementStart, int maxElements)
serverName - String name of server instance to call.serviceURLName - String name of the service that created the connector that issued this request.userId - String userId of user making request.assetGUID - String unique id for asset.elementStart - int starting position for fist returned element.maxElements - int maximum number of elements to return on the call.public CommentsResponse getAssetCommentReplies(String serverName, String serviceURLName, String userId, String assetGUID, String commentGUID, int elementStart, int maxElements)
serverName - String name of server instance to call.serviceURLName - String name of the service that created the connector that issued this request.userId - String userId of user making request.assetGUID - String unique id for asset.commentGUID - String unique id for root comment.elementStart - int starting position for fist returned element.maxElements - int maximum number of elements to return on the call.public ConnectionsResponse getConnections(String serverName, String serviceURLName, String userId, String assetGUID, int elementStart, int maxElements)
serverName - String name of server instance to call.serviceURLName - String name of the service that created the connector that issued this request.userId - String userId of user making request.assetGUID - String unique id for asset.elementStart - int starting position for fist returned element.maxElements - int maximum number of elements to return on the call.public ExternalIdentifiersResponse getExternalIdentifiers(String serverName, String serviceURLName, String userId, String assetGUID, int elementStart, int maxElements)
serverName - String name of server instance to call.serviceURLName - String name of the service that created the connector that issued this request.userId - String userId of user making request.assetGUID - String unique id for asset.elementStart - int starting position for fist returned element.maxElements - int maximum number of elements to return on the call.public ExternalReferencesResponse getExternalReferences(String serverName, String serviceURLName, String userId, String assetGUID, int elementStart, int maxElements)
serverName - String name of server instance to call.serviceURLName - String name of the service that created the connector that issued this request.userId - String userId of user making request.assetGUID - String unique id for asset.elementStart - int starting position for fist returned element.maxElements - int maximum number of elements to return on the call.public InformalTagsResponse getInformalTags(String serverName, String serviceURLName, String userId, String assetGUID, int elementStart, int maxElements)
serverName - String name of server instance to call.serviceURLName - String name of the service that created the connector that issued this request.userId - String userId of user making request.assetGUID - String unique id for asset.elementStart - int starting position for fist returned element.maxElements - int maximum number of elements to return on the call.public LicensesResponse getLicenses(String serverName, String serviceURLName, String userId, String assetGUID, int elementStart, int maxElements)
serverName - String name of server instance to call.serviceURLName - String name of the service that created the connector that issued this request.userId - String userId of user making request.assetGUID - String unique id for asset.elementStart - int starting position for fist returned element.maxElements - int maximum number of elements to return on the call.public LikesResponse getLikes(String serverName, String serviceURLName, String userId, String assetGUID, int elementStart, int maxElements)
serverName - String name of server instance to call.serviceURLName - String name of the service that created the connector that issued this request.userId - String userId of user making request.assetGUID - String unique id for asset.elementStart - int starting position for fist returned element.maxElements - int maximum number of elements to return on the call.public LocationsResponse getKnownLocations(String serverName, String serviceURLName, String userId, String assetGUID, int elementStart, int maxElements)
serverName - String name of server instance to call.serviceURLName - String name of the service that created the connector that issued this request.userId - String userId of user making request.assetGUID - String unique id for asset.elementStart - int starting position for fist returned element.maxElements - int maximum number of elements to return on the call.public NoteLogsResponse getNoteLogs(String serverName, String serviceURLName, String userId, String assetGUID, int elementStart, int maxElements)
serverName - String name of server instance to call.serviceURLName - String name of the service that created the connector that issued this request.userId - String userId of user making request.assetGUID - String unique id for asset.elementStart - int starting position for fist returned element.maxElements - int maximum number of elements to return on the call.public NotesResponse getNotes(String serverName, String serviceURLName, String userId, String noteLogGUID, int elementStart, int maxElements)
serverName - String name of server instance to call.serviceURLName - String name of the service that created the connector that issued this request.userId - String userId of user making request.noteLogGUID - String unique id for the note log.elementStart - int starting position for fist returned element.maxElements - int maximum number of elements to return on the call.public RatingsResponse getRatings(String serverName, String serviceURLName, String userId, String assetGUID, int elementStart, int maxElements)
serverName - String name of server instance to call.serviceURLName - String name of the service that created the connector that issued this request.userId - String userId of user making request.assetGUID - String unique id for asset.elementStart - int starting position for fist returned element.maxElements - int maximum number of elements to return on the call.public RelatedAssetsResponse getRelatedAssets(String serverName, String serviceURLName, String userId, String assetGUID, int elementStart, int maxElements)
serverName - String name of server instance to call.serviceURLName - String name of the service that created the connector that issued this request.userId - String userId of user making request.assetGUID - String unique id for asset.elementStart - int starting position for fist returned element.maxElements - int maximum number of elements to return on the call.public MoreInformationResponse getMoreInformation(String serverName, String serviceURLName, String userId, String elementGUID, int elementStart, int maxElements)
serverName - String name of server instance to call.serviceURLName - String name of the service that created the connector that issued this request.userId - String userId of user making request.elementGUID - String unique id for the element.elementStart - int starting position for fist returned element.maxElements - int maximum number of elements to return on the call.public RelatedMediaReferencesResponse getRelatedMediaReferences(String serverName, String serviceURLName, String userId, String assetGUID, int elementStart, int maxElements)
serverName - String name of server instance to call.serviceURLName - String name of the service that created the connector that issued this request.userId - String userId of user making request.assetGUID - String unique id for asset.elementStart - int starting position for fist returned element.maxElements - int maximum number of elements to return on the call.public SchemaAttributesResponse getSchemaAttributes(String serverName, String serviceURLName, String userId, String schemaTypeGUID, int elementStart, int maxElements)
serverName - String name of server instance to call.serviceURLName - String name of the service that created the connector that issued this request.userId - String userId of user making request.schemaTypeGUID - String unique id for containing schema type.elementStart - int starting position for fist returned element.maxElements - int maximum number of elements to return on the call.Copyright © 2018–2020 ODPi. All rights reserved.