-
Notifications
You must be signed in to change notification settings - Fork 261
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix to engine host and new Automated Curation OMVS #8053
Conversation
Signed-off-by: Mandy Chessell <[email protected]>
Signed-off-by: Mandy Chessell <[email protected]>
@SuppressWarnings(value = "unused") | ||
public VoidResponse removeNextActionProcessStep(String serverName, | ||
String actionLinkGUID, | ||
NullRequestBody requestBody) |
Check notice
Code scanning / CodeQL
Useless parameter Note
@SuppressWarnings(value = "unused") | ||
public VoidResponse removeFirstProcessStep(String serverName, | ||
String processGUID, | ||
NullRequestBody requestBody) |
Check notice
Code scanning / CodeQL
Useless parameter Note
@SuppressWarnings(value = "unused") | ||
public VoidResponse removeGovernanceActionProcessStep(String serverName, | ||
String processStepGUID, | ||
NullRequestBody requestBody) |
Check notice
Code scanning / CodeQL
Useless parameter Note
@SuppressWarnings(value = "unused") | ||
public VoidResponse removeGovernanceActionProcess(String serverName, | ||
String processGUID, | ||
NullRequestBody requestBody) |
Check notice
Code scanning / CodeQL
Useless parameter Note
@SuppressWarnings(value = "unused") | ||
public VoidResponse withdrawGovernanceActionProcess(String serverName, | ||
String processGUID, | ||
NullRequestBody requestBody) |
Check notice
Code scanning / CodeQL
Useless parameter Note
* @param params array of parameters (all strings). They are inserted into the message according to the numbering in the message text. | ||
* @return message definition object. | ||
*/ | ||
public AuditLogMessageDefinition getMessageDefinition(String ...params) |
Check notice
Code scanning / CodeQL
Missing Override annotation Note
AuditLogMessageSet.getMessageDefinition
* | ||
* @return message definition object. | ||
*/ | ||
public AuditLogMessageDefinition getMessageDefinition() |
Check notice
Code scanning / CodeQL
Missing Override annotation Note
AuditLogMessageSet.getMessageDefinition
NullRequestBody requestBody) | ||
{ | ||
final String methodName = "publishGovernanceActionProcess"; | ||
final String processGUIDParameterName = "processGUID"; |
Check notice
Code scanning / CodeQL
Unread local variable Note
NullRequestBody requestBody) | ||
{ | ||
final String methodName = "withdrawGovernanceActionProcess"; | ||
final String processGUIDParameterName = "processGUID"; |
Check notice
Code scanning / CodeQL
Unread local variable Note
NullRequestBody requestBody) | ||
{ | ||
final String methodName = "removeGovernanceActionProcess"; | ||
final String processGUIDParameterName = "processGUID"; |
Check notice
Code scanning / CodeQL
Unread local variable Note
Description
For the engine host this PR:
This also adds an initial implementation of the Automated Curation OMVS which is able to define Governance ACtion Types and Governance Action Processes as well and initiate them in the engine host.
Related Issue(s)
See above
Testing
Basic FVT
Release Notes & Documentation
No updates needed - the Automation Curaiton OMVS is already documented
Additional notes