mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-27 10:26:09 +00:00
move activeFqn to new method (#19263)
This commit is contained in:
parent
34f34ee90a
commit
53e93fe377
@ -209,8 +209,16 @@ public interface SearchClient {
|
|||||||
Used for listing knowledge page hierarchy for a given parent and page type, used in Elastic/Open SearchClientExtension
|
Used for listing knowledge page hierarchy for a given parent and page type, used in Elastic/Open SearchClientExtension
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("unused")
|
@SuppressWarnings("unused")
|
||||||
default ResultList listPageHierarchy(
|
default ResultList listPageHierarchy(String parent, String pageType, int offset, int limit) {
|
||||||
String parent, String activeFqn, String pageType, int offset, int limit) {
|
throw new CustomExceptionMessage(
|
||||||
|
Response.Status.NOT_IMPLEMENTED, NOT_IMPLEMENTED_ERROR_TYPE, NOT_IMPLEMENTED_METHOD);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Used for listing knowledge page hierarchy for a given active Page and page type, used in Elastic/Open SearchClientExtension
|
||||||
|
*/
|
||||||
|
default ResultList listPageHierarchyForActivePage(
|
||||||
|
String activeFqn, String pageType, int offset, int limit) {
|
||||||
throw new CustomExceptionMessage(
|
throw new CustomExceptionMessage(
|
||||||
Response.Status.NOT_IMPLEMENTED, NOT_IMPLEMENTED_ERROR_TYPE, NOT_IMPLEMENTED_METHOD);
|
Response.Status.NOT_IMPLEMENTED, NOT_IMPLEMENTED_ERROR_TYPE, NOT_IMPLEMENTED_METHOD);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user