Skip to content
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

Valid values for metadata #8148

Merged
merged 2 commits into from
Apr 23, 2024
Merged

Valid values for metadata #8148

merged 2 commits into from
Apr 23, 2024

Conversation

mandy-chessell
Copy link
Contributor

Description

This PR:

  • Adds a new view service called the Valid Metadata OMVS
  • Adds many of the EnumDef as valid values in the OpenConnectorsArchive

Related Issue(s)

The follwoing fixes are also added

  • Fixes the URL used by the ProjectManager OMVS when calling Project Management OMAS.
  • Fixes the Properosed value for MembershipStatus in the CollectionMemebership relationship.

Testing

Manual and FVT

Release Notes & Documentation

Already added

Additional notes

Signed-off-by: Mandy Chessell <[email protected]>
@mandy-chessell mandy-chessell merged commit 245eec2 into odpi:main Apr 23, 2024
4 checks passed

if ((ownerTypeName == null) && (requestBody.getOwnerType() != null))
{
if (requestBody.getOwnerType() == org.odpi.openmetadata.frameworks.connectors.properties.beans.OwnerType.USER_ID)
if (requestBody.getOwnerType() == AssetOwnerType.USER_ID)

Check notice

Code scanning / CodeQL

Deprecated method or constructor invocation Note

Invoking
OwnerRequestBody.getOwnerType
should be avoided because it has been deprecated.
{
ownerTypeName = OpenMetadataType.USER_IDENTITY_TYPE_NAME;
}
else if (requestBody.getOwnerType() == org.odpi.openmetadata.frameworks.connectors.properties.beans.OwnerType.PROFILE_ID)
else if (requestBody.getOwnerType() == AssetOwnerType.PROFILE_ID)

Check notice

Code scanning / CodeQL

Deprecated method or constructor invocation Note

Invoking
OwnerRequestBody.getOwnerType
should be avoided because it has been deprecated.
@@ -71,7 +71,7 @@
* The owner type for this asset
* -- SETTER --
* Set up the owner type for this asset.
* @param ownerType OwnerType enum
* @param ownerType AssetOwnerType enum

Check notice

Code scanning / CodeQL

Spurious Javadoc @param tags Note

@param tag "ownerType" does not match any actual parameter of method "getOwnerType()".
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant