-
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
Further restructure of OpenMetadata Types management #8406
Conversation
Signed-off-by: Mandy Chessell <mandy.e.chessell@gmail.com>
* | ||
* @return guid | ||
*/ | ||
public String getDescriptionGUID() |
Check notice
Code scanning / CodeQL
Missing Override annotation Note
OpenMetadataEnum.getDescriptionGUID
* | ||
* @return boolean | ||
*/ | ||
public boolean isDefault() |
Check notice
Code scanning / CodeQL
Missing Override annotation Note
OpenMetadataEnum.isDefault
*/ | ||
public int getOpenTypeOrdinal() | ||
public String getDescriptionGUID() |
Check notice
Code scanning / CodeQL
Missing Override annotation Note
OpenMetadataEnum.getDescriptionGUID
* | ||
* @return boolean | ||
*/ | ||
public boolean isDefault() |
Check notice
Code scanning / CodeQL
Missing Override annotation Note
OpenMetadataEnum.isDefault
{ | ||
return ordinal; | ||
} | ||
public int getOrdinal() { return ordinal; } |
Check notice
Code scanning / CodeQL
Missing Override annotation Note
OpenMetadataEnum.getOrdinal
{ | ||
return name; | ||
} | ||
public String getName() { return name; } |
Check notice
Code scanning / CodeQL
Missing Override annotation Note
OpenMetadataEnum.getName
* | ||
* @return String description | ||
*/ | ||
public String getDescription() | ||
public String getDescription() { return description; } |
Check notice
Code scanning / CodeQL
Missing Override annotation Note
OpenMetadataEnum.getDescription
* | ||
* @return guid | ||
*/ | ||
public String getDescriptionGUID() |
Check notice
Code scanning / CodeQL
Missing Override annotation Note
OpenMetadataEnum.getDescriptionGUID
*/ | ||
public int getOpenTypeOrdinal() | ||
public boolean isDefault() |
Check notice
Code scanning / CodeQL
Missing Override annotation Note
Description
This PR is part of the ongoing work to consolidate the defintions of the Open Metadata Types. In this PR, the focus has been on the types in Area 1. Some intial work on Area 2 was also started/
Related Issue(s)
None
Testing
Regression
Release Notes & Documentation
There are no changed in function - just simplification of the code that manages the types.
Additional notes
None