Interface AssetKnowledgeInterface
public interface AssetKnowledgeInterface
AssetKnowledgeInterface provides basic information about the types of access supported in the open metadata ecosystem
-
Method Summary
Modifier and TypeMethodDescriptiongetTypesOfAsset(String userId) Return the asset subtype names.Return the asset subtype names mapped to their descriptions.
-
Method Details
-
getTypesOfAsset
List<String> getTypesOfAsset(String userId) throws org.odpi.openmetadata.frameworks.connectors.ffdc.InvalidParameterException, org.odpi.openmetadata.frameworks.connectors.ffdc.UserNotAuthorizedException, org.odpi.openmetadata.frameworks.connectors.ffdc.PropertyServerException Return the asset subtype names.- Parameters:
userId- calling user- Returns:
- list of type names that are subtypes of asset
- Throws:
org.odpi.openmetadata.frameworks.connectors.ffdc.InvalidParameterException- full path or userId is nullorg.odpi.openmetadata.frameworks.connectors.ffdc.PropertyServerException- problem accessing property serverorg.odpi.openmetadata.frameworks.connectors.ffdc.UserNotAuthorizedException- security access problem
-
getTypesOfAssetWithDescriptions
Map<String,String> getTypesOfAssetWithDescriptions(String userId) throws org.odpi.openmetadata.frameworks.connectors.ffdc.InvalidParameterException, org.odpi.openmetadata.frameworks.connectors.ffdc.UserNotAuthorizedException, org.odpi.openmetadata.frameworks.connectors.ffdc.PropertyServerException Return the asset subtype names mapped to their descriptions.- Parameters:
userId- calling user- Returns:
- list of type names that are subtypes of asset mapped to their descriptions
- Throws:
org.odpi.openmetadata.frameworks.connectors.ffdc.InvalidParameterException- full path or userId is nullorg.odpi.openmetadata.frameworks.connectors.ffdc.PropertyServerException- problem accessing property serverorg.odpi.openmetadata.frameworks.connectors.ffdc.UserNotAuthorizedException- security access problem
-