Skip to content

Commit

Permalink
Merge pull request #7627 from mandy-chessell/code2023
Browse files Browse the repository at this point in the history
Add Secrets Store Connector and Apache Atlas connector
  • Loading branch information
mandy-chessell authored Apr 23, 2023
2 parents 54f94cc + 31b69eb commit 2f9f9e1
Show file tree
Hide file tree
Showing 139 changed files with 8,316 additions and 534 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@
import java.util.List;

/**
* The CollaborationExchangeInterface supports the exchange of comments, likes, reviews/ratings and
* informal tags.
* The CollaborationExchangeInterface supports the exchange of comments, likes, reviews/ratings and informal tags.
*/
public interface CollaborationExchangeInterface
{
Expand Down Expand Up @@ -766,6 +765,38 @@ List<NoteLogElement> getNoteLogsByName(String userId,
PropertyServerException;


/**
* Retrieve the list of note log metadata elements attached to the element.
*
* @param userId calling user
* @param assetManagerGUID unique identifier of software capability representing the caller
* @param assetManagerName unique elementGUID of software capability representing the caller
* @param elementGUID element to start from
* @param startFrom paging start point
* @param pageSize maximum results that can be returned
* @param effectiveTime the time that the retrieved elements must be effective for
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
*
* @return list of matching metadata elements
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
List<NoteLogElement> getNoteLogsForElement(String userId,
String assetManagerGUID,
String assetManagerName,
String elementGUID,
int startFrom,
int pageSize,
Date effectiveTime,
boolean forLineage,
boolean forDuplicateProcessing) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException;


/**
* Retrieve the note log metadata element with the supplied unique identifier.
*
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -690,6 +690,34 @@ List<NoteLogElement> getNoteLogsByName(String userId,
PropertyServerException;


/**
* Retrieve the list of note log metadata elements attached to the element.
*
* @param userId calling user
* @param elementGUID element to start from
* @param startFrom paging start point
* @param pageSize maximum results that can be returned
* @param effectiveTime the time that the retrieved elements must be effective for
* @param forLineage return elements marked with the Memento classification?
* @param forDuplicateProcessing do not merge elements marked as duplicates?
*
* @return list of matching metadata elements
*
* @throws InvalidParameterException one of the parameters is invalid
* @throws UserNotAuthorizedException the user is not authorized to issue this request
* @throws PropertyServerException there is a problem reported in the open metadata server(s)
*/
List<NoteLogElement> getNoteLogsForElement(String userId,
String elementGUID,
int startFrom,
int pageSize,
Date effectiveTime,
boolean forLineage,
boolean forDuplicateProcessing) throws InvalidParameterException,
UserNotAuthorizedException,
PropertyServerException;


/**
* Retrieve the note log metadata element with the supplied unique identifier.
*
Expand Down
Loading

0 comments on commit 2f9f9e1

Please sign in to comment.