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 Object
The 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 -
Method Summary
Modifier and TypeMethodDescriptiongetGlossary
(String serverName, String userId, String guid) Get a config.
-
Constructor Details
-
GlossaryAuthorViewGonfigRESTResource
public GlossaryAuthorViewGonfigRESTResource()Default constructor
-
-
Method Details
-
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
-