Class GlossaryAuthorViewGonfigRESTResource
- java.lang.Object
-
- org.odpi.openmetadata.viewservices.glossaryauthor.server.GlossaryAuthorViewGonfigRESTResource
-
@RestController @RequestMapping("/servers/{serverName}/open-metadata/view-services/glossary-author/users/{userId}/configs") public class GlossaryAuthorViewGonfigRESTResource extends ObjectThe GlossaryAuthorRESTServicesInstance provides the org.odpi.openmetadata.viewservices.glossaryauthor.server implementation of the Glossary Author Open Metadata View Service (OMVS) for glossaries. This interface provides glossary authoring interfaces for subject area experts.
-
-
Constructor Summary
Constructors Constructor Description GlossaryAuthorViewGonfigRESTResource()Default constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SubjectAreaOMASAPIResponse<Config>getGlossary(String serverName, String userId, String guid)Get a config.
-
-
-
Method Detail
-
getGlossary
@GetMapping(path="/{guid}") public SubjectAreaOMASAPIResponse<Config> getGlossary(@PathVariable String serverName, @PathVariable String userId, @PathVariable String guid)Get a config.- Parameters:
serverName- local UI server nameuserId- useridguid- identifier of the configuration to get- Returns:
- response which when successful contains the config
when not successful the following Exception responses can occur
- UserNotAuthorizedException the requesting user is not authorized to issue this request.
- MetadataServerUncontactableException not able to communicate with a Metadata repository service.
- InvalidParameterException one of the parameters is null or invalid.
- UnrecognizedGUIDException the supplied guid was not recognised
- UnrecognizedGUIDException the supplied guid was not recognised
- FunctionNotSupportedException Function not supported
-
-