Skip to content

Commit

Permalink
Add Listpage Method (#17761)
Browse files Browse the repository at this point in the history
  • Loading branch information
mohityadav766 authored Sep 9, 2024
1 parent 2b24c91 commit 0c510e4
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,15 @@ Response searchLineage(
String entityType)
throws IOException;

/*
Used for listing knowledge page hierarchy for a given parent and page type, used in Elastic/Open SearchClientExtension
*/
@SuppressWarnings("unused")
default Response listPageHierarchy(String parent, String pageType) {
throw new CustomExceptionMessage(
Response.Status.NOT_IMPLEMENTED, NOT_IMPLEMENTED_ERROR_TYPE, NOT_IMPLEMENTED_METHOD);
}

Map<String, Object> searchLineageInternal(
String fqn,
int upstreamDepth,
Expand Down

0 comments on commit 0c510e4

Please sign in to comment.