Options
All
  • Public
  • Public/Protected
  • All
Menu

Controller: terminology | GET | /api/terminologies/providers/importers | Action: importerProviders | | GET | /api/terminologies/providers/exporters | Action: exporterProviders | | POST | /api/terminologies/import/${importerNamespace}/${importerName}/${importerVersion} | Action: importModels | | POST | /api/terminologies/export/${exporterNamespace}/${exporterName}/${exporterVersion} | Action: exportModels | | DELETE | /api/terminologies/${terminologyId}/readByAuthenticated | Action: readByAuthenticated | | PUT | /api/terminologies/${terminologyId}/readByAuthenticated | Action: readByAuthenticated | | DELETE | /api/terminologies/${terminologyId}/readByEveryone | Action: readByEveryone | | PUT | /api/terminologies/${terminologyId}/readByEveryone | Action: readByEveryone | | PUT | /api/terminologies/${terminologyId}/newModelVersion | Action: newModelVersion | | PUT | /api/terminologies/${terminologyId}/newDocumentationVersion | Action: newDocumentationVersion | | PUT | /api/terminologies/${terminologyId}/finalise | Action: finalise | | GET | /api/terminologies/${terminologyId}/tree | Action: tree | | POST | /api/folders/${folderId}/terminologies | Action: save | | GET | /api/folders/${folderId}/terminologies | Action: index | | PUT | /api/terminologies/${terminologyId}/folder/${folderId} | Action: changeFolder | | GET | /api/terminologies/${terminologyId}/diff/${otherModelId} | Action: diff | | PUT | /api/folders/${folderId}/terminologies/${terminologyId} | Action: changeFolder | | GET | /api/terminologies/${terminologyId}/export/${exporterNamespace}/${exporterName}/${exporterVersion} | Action: exportModel | | GET | /api/terminologies | Action: index | | DELETE | /api/terminologies | Action: deleteAll | | DELETE | /api/terminologies/${id} | Action: delete | | PUT | /api/terminologies/${id} | Action: update | | GET | /api/terminologies/${id} | Action: show | | PUT | /api/terminologies/${terminologyId}/newBranchModelVersion | Action: newBranchModelVersion | | PUT | /api/terminologies/${terminologyId}/newForkModel | Action: newForkModel | | GET | /api/terminologies/${terminologyId}/latestModelVersion | Action: latestModelVersion | | GET | /api/terminologies/${terminologyId}/latestFinalisedModel | Action: latestFinalisedModel | | GET | /api/terminologies/${terminologyId}/modelVersionTree | Action: modelVersionTree |

Hierarchy

Index

Constructors

constructor

Properties

Protected apiEndpoint

apiEndpoint: string

Stores the base API endpoint for all REST requests.

Protected defaultRequestOptions

defaultRequestOptions: IMdmDefaultHttpRequestOptions

Stores the default options to apply to every REST request.

terms

Methods

diff

exportModel

exportModels

  • exportModels(namespace: any, name: any, version: any, data: any, restHandlerOptions?: IMdmRestHandlerOptions): any

exporters

finalise

Protected generateQueryString

  • Generate a query string for a URL based on object property values provided.

    Parameters

    • queryStringParams: IMdmQueryStringParams = ...

      A query string parameters object to convert to a string.

    Returns string

    A URL encoded string containing each parameter and value, or an empty string if no properties were provided.

get

getTermRelationship

importModels

  • importModels(namespace: any, name: any, version: any, data: any, restHandlerOptions?: IMdmRestHandlerOptions): any

importers

Protected isGuid

  • isGuid(value: any): boolean
  • Test if a string represents a UUID.

    Parameters

    • value: any

      The string to test.

    Returns boolean

    True if value represents a UUID.

latestFinalisedModel

latestModelVersion

list

modelVersionTree

moveTerminologyToFolder

  • moveTerminologyToFolder(terminologyId: string, folderId: string, data: any, restHandlerOptions?: IMdmRestHandlerOptions): any

newBranchModelVersion

newDocumentationVersion

newForkModel

newModelVersion

remove

removeAll

removeReadByAuthenticated

removeReadByEveryone

simpleDelete

simpleGet

simplePost

  • Send a HTTP POST request to the given resource.

    Parameters

    • url: string

      The full URL to the REST resource.

    • data: any

      The data to include in the POST request body.

    • Optional options: IMdmRestHandlerOptions

      Optional REST handler options, if required.

    Returns any

    The result of the POST request.

simplePut

  • Send a HTTP PUT request to the given resource.

    Parameters

    • url: string

      The full URL to the REST resource.

    • data: any

      The data to include in the PUT request body.

    • Optional options: IMdmRestHandlerOptions

      Optional REST handler options, if required.

    Returns any

    The result of the PUT request.

simpleRequest

  • Send a generic HTTP request to the given resource.

    Parameters

    • url: string

      The full URL to the REST resource.

    • queryStringParams: IMdmQueryStringParams = ...

      Optional query string parameters, if required.

    • Optional options: IMdmRestHandlerOptions

      Optional REST handler options, if required.

    Returns any

    The result of the request.

    All details of HTTP request must be included in the options parameter, particularly the HTTP method:

    simpleRequest('http://localhost/api/test', { }, { method: 'GET' });
    

termRelationships

tree

update

updateReadByAuthenticated

  • updateReadByAuthenticated(terminologyId: string, data?: any, restHandlerOptions?: IMdmRestHandlerOptions): any

updateReadByEveryone

Generated using TypeDoc