-
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
Add placholder support and survey reports #8016
Conversation
Signed-off-by: Mandy Chessell <[email protected]>
|
||
/* | ||
* Create an entry in the governance engine map for each configured engine. | ||
*/ | ||
governanceEngineMap.setGovernanceEngineProperties(discoveryEngines, | ||
governanceEngineMap.setGovernanceEngineProperties(engineServiceConfig.getEngines(), |
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation Note
EngineServiceConfig.getEngines
|
||
/* | ||
* Create an entry in the governance engine map for each configured engine. | ||
*/ | ||
governanceEngineMap.setGovernanceEngineProperties(governanceActionEngines, | ||
governanceEngineMap.setGovernanceEngineProperties(engineServiceConfig.getEngines(), |
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation Note
EngineServiceConfig.getEngines
|
||
/* | ||
* Create an entry in the governance engine map for each configured engine. | ||
*/ | ||
governanceEngineMap.setGovernanceEngineProperties(engineConfigs, | ||
governanceEngineMap.setGovernanceEngineProperties(engineServiceConfig.getEngines(), |
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation Note
EngineServiceConfig.getEngines
|
||
/* | ||
* Create an entry in the governance engine map for each configured engine. | ||
*/ | ||
governanceEngineMap.setGovernanceEngineProperties(surveyActionEngines, | ||
governanceEngineMap.setGovernanceEngineProperties(engineServiceConfig.getEngines(), |
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation Note
EngineServiceConfig.getEngines
Date effectiveTime) throws InvalidParameterException, | ||
UserNotAuthorizedException, | ||
PropertyServerException | ||
public void deleteRelatedElementsInStore(String relationshipGUID) throws InvalidParameterException, |
Check notice
Code scanning / CodeQL
Missing Override annotation Note
OpenMetadataStore.deleteRelatedElementsInStore
Date effectiveTime) throws InvalidParameterException, | ||
UserNotAuthorizedException, | ||
PropertyServerException | ||
public void deleteMetadataElementInStore(String metadataElementGUID) throws InvalidParameterException, |
Check notice
Code scanning / CodeQL
Missing Override annotation Note
OpenMetadataStore.deleteMetadataElementInStore
{ | ||
RelatedElement relatedElement = new RelatedElement(); | ||
|
||
relatedElement.setRelationshipHeader(this.getMetadataElementHeader(beanClass, relationship, relationship.getRelationshipGUID(), null, methodName)); |
Check warning
Code scanning / CodeQL
Dereferenced variable may be null Warning
relationship
this
{ | ||
RelatedElement relatedElement = new RelatedElement(); | ||
|
||
relatedElement.setRelationshipHeader(this.getMetadataElementHeader(beanClass, relatedMetadataElement, relatedMetadataElement.getRelationshipGUID(), null, methodName)); |
Check warning
Code scanning / CodeQL
Dereferenced variable may be null Warning
Description
This PR allows placeholder labels to be added to OMAG server configuration documents. For example:
The placeholder values are supplied in application.properties.
The placeholder labels are replaced with the placholder values at server startup.
There is also an improved survey report.
Related Issue(s)
None
Testing
The sample configuration
active-metadata-store
uses the{{kafkaep}}
placeholder variable.A default is set up with the value
localhost:9092
inapplicaiton.properties
Release Notes & Documentation
This is a new function for the admin guide - updates in progress.
Additional notes
None