@RestController
@RequestMapping(value="/servers/{serverName}/open-metadata/access-services/connected-asset/users/{userId}")
public class ConnectedAssetResource
extends Object
| Constructor and Description |
|---|
ConnectedAssetResource()
Default constructor
|
| Modifier and Type | Method and Description |
|---|---|
org.odpi.openmetadata.accessservices.connectedasset.rest.AssetResponse |
getAssetSummary(String serverName,
String userId,
String assetGUID)
Returns the basic information about the asset.
|
org.odpi.openmetadata.accessservices.connectedasset.rest.CertificationsResponse |
getCertifications(String serverName,
String userId,
String assetGUID,
int elementStart,
int maxElements)
Returns the list of certifications for the asset.
|
org.odpi.openmetadata.accessservices.connectedasset.rest.CommentsResponse |
getCommentReplies(String serverName,
String userId,
String commentGUID,
int elementStart,
int maxElements)
Returns the list of comments for the asset.
|
org.odpi.openmetadata.accessservices.connectedasset.rest.CommentsResponse |
getComments(String serverName,
String userId,
String assetGUID,
int elementStart,
int maxElements)
Returns the list of comments for the asset.
|
org.odpi.openmetadata.accessservices.connectedasset.rest.AssetResponse |
getConnectedAssetSummary(String serverName,
String userId,
String assetGUID,
String connectionGUID)
Returns the basic information about the asset.
|
org.odpi.openmetadata.accessservices.connectedasset.rest.ConnectionsResponse |
getConnections(String serverName,
String userId,
String assetGUID,
int elementStart,
int maxElements)
Returns the list of connections for the asset.
|
org.odpi.openmetadata.accessservices.connectedasset.rest.ExternalIdentifiersResponse |
getExternalIdentifiers(String serverName,
String userId,
String assetGUID,
int elementStart,
int maxElements)
Returns the list of external identifiers for the asset.
|
org.odpi.openmetadata.accessservices.connectedasset.rest.ExternalReferencesResponse |
getExternalReferences(String serverName,
String userId,
String assetGUID,
int elementStart,
int maxElements)
Returns the list of external references for the asset.
|
org.odpi.openmetadata.accessservices.connectedasset.rest.InformalTagsResponse |
getInformalTags(String serverName,
String userId,
String assetGUID,
int elementStart,
int maxElements)
Returns the list of informal tags for the asset.
|
org.odpi.openmetadata.accessservices.connectedasset.rest.LocationsResponse |
getKnownLocations(String serverName,
String userId,
String assetGUID,
int elementStart,
int maxElements)
Returns the list of known locations for the asset.
|
org.odpi.openmetadata.accessservices.connectedasset.rest.LicensesResponse |
getLicenses(String serverName,
String userId,
String assetGUID,
int elementStart,
int maxElements)
Returns the list of licenses for the asset.
|
org.odpi.openmetadata.accessservices.connectedasset.rest.LikesResponse |
getLikes(String serverName,
String userId,
String assetGUID,
int elementStart,
int maxElements)
Returns the list of likes for the asset.
|
org.odpi.openmetadata.accessservices.connectedasset.rest.NoteLogsResponse |
getNoteLogs(String serverName,
String userId,
String assetGUID,
int elementStart,
int maxElements)
Returns the list of note logs for the asset.
|
org.odpi.openmetadata.accessservices.connectedasset.rest.NotesResponse |
getNotes(String serverName,
String userId,
String noteLogGUID,
int elementStart,
int maxElements)
Returns the list of notes for the asset.
|
org.odpi.openmetadata.accessservices.connectedasset.rest.RatingsResponse |
getRatings(String serverName,
String userId,
String assetGUID,
int elementStart,
int maxElements)
Returns the list of ratings for the asset.
|
org.odpi.openmetadata.accessservices.connectedasset.rest.RelatedAssetsResponse |
getRelatedAssets(String serverName,
String userId,
String assetGUID,
int elementStart,
int maxElements)
Returns the list of related assets for the asset.
|
org.odpi.openmetadata.accessservices.connectedasset.rest.RelatedMediaReferencesResponse |
getRelatedMediaReferences(String serverName,
String userId,
String assetGUID,
int elementStart,
int maxElements)
Returns the list of related media references for the asset.
|
org.odpi.openmetadata.accessservices.connectedasset.rest.SchemaAttributesResponse |
getSchemaAttributes(String serverName,
String userId,
String schemaTypeGUID,
int elementStart,
int maxElements)
Returns a list of schema attributes for a schema type.
|
@RequestMapping(method=GET,
path="/assets/{assetGUID}/via-connection/{connectionGUID}")
public org.odpi.openmetadata.accessservices.connectedasset.rest.AssetResponse getConnectedAssetSummary(@PathVariable
String serverName,
@PathVariable
String userId,
@PathVariable
String assetGUID,
@PathVariable
String connectionGUID)
serverName - name of the server.userId - String userId of user making request.assetGUID - String unique id for asset.connectionGUID - unique id for connection used to access asset.@RequestMapping(method=GET,
path="/assets/{assetGUID}")
public org.odpi.openmetadata.accessservices.connectedasset.rest.AssetResponse getAssetSummary(@PathVariable
String serverName,
@PathVariable
String userId,
@PathVariable
String assetGUID)
serverName - String name of server instance to call.userId - String userId of user making request.assetGUID - String unique id for asset.@RequestMapping(method=GET,
path="/assets/{assetGUID}/certifications")
public org.odpi.openmetadata.accessservices.connectedasset.rest.CertificationsResponse getCertifications(@PathVariable
String serverName,
@PathVariable
String userId,
@PathVariable
String assetGUID,
@RequestParam
int elementStart,
@RequestParam
int maxElements)
serverName - String name of server instance to call.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.@RequestMapping(method=GET,
path="/assets/{assetGUID}/comments")
public org.odpi.openmetadata.accessservices.connectedasset.rest.CommentsResponse getComments(@PathVariable
String serverName,
@PathVariable
String userId,
@PathVariable
String assetGUID,
@RequestParam
int elementStart,
@RequestParam
int maxElements)
serverName - String name of server instance to call.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.@RequestMapping(method=GET,
path="/comments/{commentGUID}/replies")
public org.odpi.openmetadata.accessservices.connectedasset.rest.CommentsResponse getCommentReplies(@PathVariable
String serverName,
@PathVariable
String userId,
@PathVariable
String commentGUID,
@RequestParam
int elementStart,
@RequestParam
int maxElements)
serverName - String name of server instance to call.userId - String userId of user making request.commentGUID - String unique id for the root comment.elementStart - int starting position for fist returned element.maxElements - int maximum number of elements to return on the call.@RequestMapping(method=GET,
path="/assets/{assetGUID}/connections")
public org.odpi.openmetadata.accessservices.connectedasset.rest.ConnectionsResponse getConnections(@PathVariable
String serverName,
@PathVariable
String userId,
@PathVariable
String assetGUID,
@RequestParam
int elementStart,
@RequestParam
int maxElements)
serverName - String name of server instance to call.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.@RequestMapping(method=GET,
path="/assets/{assetGUID}/external-identifiers")
public org.odpi.openmetadata.accessservices.connectedasset.rest.ExternalIdentifiersResponse getExternalIdentifiers(@PathVariable
String serverName,
@PathVariable
String userId,
@PathVariable
String assetGUID,
@RequestParam
int elementStart,
@RequestParam
int maxElements)
serverName - String name of server instance to call.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.@RequestMapping(method=GET,
path="/assets/{assetGUID}/external-references")
public org.odpi.openmetadata.accessservices.connectedasset.rest.ExternalReferencesResponse getExternalReferences(@PathVariable
String serverName,
@PathVariable
String userId,
@PathVariable
String assetGUID,
@RequestParam
int elementStart,
@RequestParam
int maxElements)
serverName - String name of server instance to call.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.@RequestMapping(method=GET,
path="/assets/{assetGUID}/informal-tags")
public org.odpi.openmetadata.accessservices.connectedasset.rest.InformalTagsResponse getInformalTags(@PathVariable
String serverName,
@PathVariable
String userId,
@PathVariable
String assetGUID,
@RequestParam
int elementStart,
@RequestParam
int maxElements)
serverName - String name of server instance to call.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.@RequestMapping(method=GET,
path="/assets/{assetGUID}/licenses")
public org.odpi.openmetadata.accessservices.connectedasset.rest.LicensesResponse getLicenses(@PathVariable
String serverName,
@PathVariable
String userId,
@PathVariable
String assetGUID,
@RequestParam
int elementStart,
@RequestParam
int maxElements)
serverName - String name of server instance to call.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.@RequestMapping(method=GET,
path="/assets/{assetGUID}/likes")
public org.odpi.openmetadata.accessservices.connectedasset.rest.LikesResponse getLikes(@PathVariable
String serverName,
@PathVariable
String userId,
@PathVariable
String assetGUID,
@RequestParam
int elementStart,
@RequestParam
int maxElements)
serverName - String name of server instance to call.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.@RequestMapping(method=GET,
path="/assets/{assetGUID}/known-locations")
public org.odpi.openmetadata.accessservices.connectedasset.rest.LocationsResponse getKnownLocations(@PathVariable
String serverName,
@PathVariable
String userId,
@PathVariable
String assetGUID,
@RequestParam
int elementStart,
@RequestParam
int maxElements)
serverName - String name of server instance to call.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.@RequestMapping(method=GET,
path="/assets/{assetGUID}/note-logs")
public org.odpi.openmetadata.accessservices.connectedasset.rest.NoteLogsResponse getNoteLogs(@PathVariable
String serverName,
@PathVariable
String userId,
@PathVariable
String assetGUID,
@RequestParam
int elementStart,
@RequestParam
int maxElements)
serverName - String name of server instance to call.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.@RequestMapping(method=GET,
path="/note-log/{noteLogGUID}/notes")
public org.odpi.openmetadata.accessservices.connectedasset.rest.NotesResponse getNotes(@PathVariable
String serverName,
@PathVariable
String userId,
@PathVariable
String noteLogGUID,
@RequestParam
int elementStart,
@RequestParam
int maxElements)
serverName - String name of server instance to call.userId - String userId of user making request.noteLogGUID - String unique id for note log.elementStart - int starting position for fist returned element.maxElements - int maximum number of elements to return on the call.@RequestMapping(method=GET,
path="/assets/{assetGUID}/ratings")
public org.odpi.openmetadata.accessservices.connectedasset.rest.RatingsResponse getRatings(@PathVariable
String serverName,
@PathVariable
String userId,
@PathVariable
String assetGUID,
@RequestParam
int elementStart,
@RequestParam
int maxElements)
serverName - String name of server instance to call.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.@RequestMapping(method=GET,
path="/assets/{assetGUID}/related-assets")
public org.odpi.openmetadata.accessservices.connectedasset.rest.RelatedAssetsResponse getRelatedAssets(@PathVariable
String serverName,
@PathVariable
String userId,
@PathVariable
String assetGUID,
@RequestParam
int elementStart,
@RequestParam
int maxElements)
serverName - String name of server instance to call.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.@RequestMapping(method=GET,
path="/assets/{assetGUID}/related-media-references")
public org.odpi.openmetadata.accessservices.connectedasset.rest.RelatedMediaReferencesResponse getRelatedMediaReferences(@PathVariable
String serverName,
@PathVariable
String userId,
@PathVariable
String assetGUID,
@RequestParam
int elementStart,
@RequestParam
int maxElements)
serverName - String name of server instance to call.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.@RequestMapping(method=GET,
path="/assets/{schemaTypeGUID}/schema-attributes")
public org.odpi.openmetadata.accessservices.connectedasset.rest.SchemaAttributesResponse getSchemaAttributes(@PathVariable
String serverName,
@PathVariable
String userId,
@PathVariable
String schemaTypeGUID,
@RequestParam
int elementStart,
@RequestParam
int maxElements)
serverName - String name of server instance to call.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–2019 ODPi. All rights reserved.