You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: open-metadata-implementation/access-services/gaf-metadata-management/gaf-metadata-client/src/main/java/org/odpi/openmetadata/frameworkservices/gaf/client/OpenGovernanceClientBase.java
-87Lines changed: 0 additions & 87 deletions
Original file line number
Diff line number
Diff line change
@@ -407,93 +407,6 @@ public List<EngineActionElement> getActiveEngineActions(String userId,
407
407
returnrestResult.getElements();
408
408
}
409
409
410
-
411
-
/**
412
-
* Retrieve the list of engine action metadata elements that contain the search string.
413
-
* The search string is treated as a regular expression.
414
-
*
415
-
* @param userId calling user
416
-
* @param searchString string to find in the properties
417
-
*
418
-
* @return list of matching metadata elements
419
-
*
420
-
* @throws InvalidParameterException one of the parameters is invalid
421
-
* @throws UserNotAuthorizedException the user is not authorized to issue this request
422
-
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
Copy file name to clipboardExpand all lines: open-metadata-implementation/access-services/gaf-metadata-management/gaf-metadata-server/src/main/java/org/odpi/openmetadata/frameworkservices/gaf/server/OpenGovernanceRESTServices.java
Copy file name to clipboardExpand all lines: open-metadata-implementation/access-services/gaf-metadata-management/gaf-metadata-spring/src/main/java/org/odpi/openmetadata/frameworkservices/gaf/server/spring/OpenGovernanceResource.java
Copy file name to clipboardExpand all lines: open-metadata-implementation/access-services/omf-metadata-management/omf-metadata-client/src/main/java/org/odpi/openmetadata/frameworkservices/omf/client/OpenMetadataClientBase.java
+42-1Lines changed: 42 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1015,7 +1015,7 @@ public RelatedMetadataElement getRelatedMetadataElement(String userId,
1015
1015
* @param elementGUID unique identifier for the metadata element
1016
1016
* @param queryOptions multiple options to control the query
1017
1017
*
1018
-
* @return a list of elements matching the supplied criteria; null means no matching elements in the metadata store.
1018
+
* @return a list of classifications matching the supplied criteria; null means no matching elements in the metadata store.
1019
1019
* @throws InvalidParameterException one of the search parameters are is invalid
1020
1020
* @throws UserNotAuthorizedException the userId is not permitted to perform this operation.
1021
1021
* @throws PropertyServerException there is a problem accessing the metadata store
@@ -1045,6 +1045,47 @@ public List<OpenMetadataElement> getMetadataElementHistory(String
1045
1045
}
1046
1046
1047
1047
1048
+
1049
+
/**
1050
+
* Return each of the versions of a metadata element's classification.
1051
+
*
1052
+
* @param userId caller's userId
1053
+
* @param elementGUID unique identifier for the metadata element
1054
+
* @param classificationName name of the classification to retrieve
1055
+
* @param queryOptions multiple options to control the query
1056
+
*
1057
+
* @return a list of elements matching the supplied criteria; null means no matching elements in the metadata store.
1058
+
* @throws InvalidParameterException one of the search parameters are is invalid
1059
+
* @throws UserNotAuthorizedException the userId is not permitted to perform this operation.
1060
+
* @throws PropertyServerException there is a problem accessing the metadata store
Copy file name to clipboardExpand all lines: open-metadata-implementation/access-services/omf-metadata-management/omf-metadata-client/src/main/java/org/odpi/openmetadata/frameworkservices/omf/client/rest/OMFRESTClient.java
+31Lines changed: 31 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -321,6 +321,37 @@ public OpenMetadataElementsResponse callOpenMetadataElementsPostRESTCall(String
321
321
}
322
322
323
323
324
+
/**
325
+
* Issue a POST REST call that returns a AttachedClassificationsResponse object.
326
+
*
327
+
* @param methodName name of the method being called.
328
+
* @param urlTemplate template of the URL for the REST API call, with place-holders for the parameters.
329
+
* @param requestBody object that passes additional parameters
330
+
* @param params a list of parameters that are slotted into the url template.
331
+
*
332
+
* @return response object
333
+
* @throws InvalidParameterException one of the parameters is invalid.
334
+
* @throws UserNotAuthorizedException the user is not authorized to make this request.
335
+
* @throws PropertyServerException the repository is not available or not working properly.
0 commit comments