public interface AssetConsumerGlossaryInterface
| Modifier and Type | Method and Description |
|---|---|
List<GlossaryTerm> |
findMeanings(String userId,
String term,
int startFrom,
int pageSize)
Return the full definition (meaning) of the terms matching the supplied name.
|
List<String> |
getAssetsByMeaning(String userId,
String termGUID,
int startFrom,
int pageSize)
Return the list of unique identifiers for assets that are linked to a specific (meaning) either directly or via
fields in the schema.
|
GlossaryTerm |
getMeaning(String userId,
String guid)
Return the full definition (meaning) of a term using the unique identifier of the glossary term
that contains the definition.
|
List<GlossaryTerm> |
getMeaningByName(String userId,
String term,
int startFrom,
int pageSize)
Return the full definition (meaning) of the terms exactly matching the supplied name.
|
GlossaryTerm getMeaning(String userId, String guid) throws InvalidParameterException, PropertyServerException, UserNotAuthorizedException
userId - userId of the user making the request.guid - unique identifier of the glossary term.InvalidParameterException - the userId is null or invalid.PropertyServerException - there is a problem retrieving information from the property server(s).UserNotAuthorizedException - the requesting user is not authorized to issue this request.List<GlossaryTerm> getMeaningByName(String userId, String term, int startFrom, int pageSize) throws InvalidParameterException, PropertyServerException, UserNotAuthorizedException
userId - the name of the calling user.term - name of term.startFrom - index of the list to start from (0 for start)pageSize - maximum number of elements to return.InvalidParameterException - the userId is null or invalid.PropertyServerException - there is a problem retrieving information from the property server(s).UserNotAuthorizedException - the requesting user is not authorized to issue this request.List<GlossaryTerm> findMeanings(String userId, String term, int startFrom, int pageSize) throws InvalidParameterException, PropertyServerException, UserNotAuthorizedException
userId - the name of the calling user.term - name of term. This may include wild card characters.startFrom - index of the list to start from (0 for start)pageSize - maximum number of elements to return.InvalidParameterException - the userId is null or invalid.PropertyServerException - there is a problem retrieving information from the property server(s).UserNotAuthorizedException - the requesting user is not authorized to issue this request.List<String> getAssetsByMeaning(String userId, String termGUID, int startFrom, int pageSize) throws InvalidParameterException, PropertyServerException, UserNotAuthorizedException
userId - the name of the calling user.termGUID - unique identifier of term.startFrom - index of the list to start from (0 for start)pageSize - maximum number of elements to return.InvalidParameterException - the userId is null or invalid.PropertyServerException - there is a problem retrieving information from the property server(s).UserNotAuthorizedException - the requesting user is not authorized to issue this request.Copyright © 2018–2020 ODPi. All rights reserved.