Enum AccessServiceDescription
- java.lang.Object
-
- java.lang.Enum<AccessServiceDescription>
-
- org.odpi.openmetadata.adminservices.configuration.registration.AccessServiceDescription
-
- All Implemented Interfaces:
Serializable,Comparable<AccessServiceDescription>
public enum AccessServiceDescription extends Enum<AccessServiceDescription> implements Serializable
AccessServiceDescription provides a list of registered OMAS services.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetAccessServiceCode()Return the code for this enum instanceStringgetAccessServiceDescription()Return the default description for the type for this enum instance.StringgetAccessServiceFullName()Return the formal name for this enum instance.StringgetAccessServiceName()Return the default name for this enum instance.StringgetAccessServiceURLMarker()Return the string that appears in the REST API URL that identifies the owning service.StringgetAccessServiceWiki()Return the URL for the wiki page describing this access service.static AccessServiceDescriptionvalueOf(String name)Returns the enum constant of this type with the specified name.static AccessServiceDescription[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ASSET_CATALOG_OMAS
public static final AccessServiceDescription ASSET_CATALOG_OMAS
-
ASSET_CONSUMER_OMAS
public static final AccessServiceDescription ASSET_CONSUMER_OMAS
-
ASSET_LINEAGE_OMAS
public static final AccessServiceDescription ASSET_LINEAGE_OMAS
-
ASSET_MANAGER_OMAS
public static final AccessServiceDescription ASSET_MANAGER_OMAS
-
ASSET_OWNER_OMAS
public static final AccessServiceDescription ASSET_OWNER_OMAS
-
ANALYTICS_MODELING_OMAS
public static final AccessServiceDescription ANALYTICS_MODELING_OMAS
-
COMMUNITY_PROFILE_OMAS
public static final AccessServiceDescription COMMUNITY_PROFILE_OMAS
-
CONNECTED_ASSET_OMAS
public static final AccessServiceDescription CONNECTED_ASSET_OMAS
-
IT_INFRASTRUCTURE_OMAS
public static final AccessServiceDescription IT_INFRASTRUCTURE_OMAS
-
DATA_ENGINE_OMAS
public static final AccessServiceDescription DATA_ENGINE_OMAS
-
DATA_PLATFORM_OMAS
public static final AccessServiceDescription DATA_PLATFORM_OMAS
-
DATA_MANAGER_OMAS
public static final AccessServiceDescription DATA_MANAGER_OMAS
-
DATA_PRIVACY_OMAS
public static final AccessServiceDescription DATA_PRIVACY_OMAS
-
DATA_SCIENCE_OMAS
public static final AccessServiceDescription DATA_SCIENCE_OMAS
-
DESIGN_MODEL_OMAS
public static final AccessServiceDescription DESIGN_MODEL_OMAS
-
DEVOPS_OMAS
public static final AccessServiceDescription DEVOPS_OMAS
-
DIGITAL_ARCHITECTURE_OMAS
public static final AccessServiceDescription DIGITAL_ARCHITECTURE_OMAS
-
DIGITAL_SERVICE_OMAS
public static final AccessServiceDescription DIGITAL_SERVICE_OMAS
-
DISCOVERY_ENGINE_OMAS
public static final AccessServiceDescription DISCOVERY_ENGINE_OMAS
-
GLOSSARY_VIEW_OMAS
public static final AccessServiceDescription GLOSSARY_VIEW_OMAS
-
GOVERNANCE_ENGINE_OMAS
public static final AccessServiceDescription GOVERNANCE_ENGINE_OMAS
-
GOVERNANCE_PROGRAM_OMAS
public static final AccessServiceDescription GOVERNANCE_PROGRAM_OMAS
-
INFORMATION_VIEW_OMAS
public static final AccessServiceDescription INFORMATION_VIEW_OMAS
-
PROJECT_MANAGEMENT_OMAS
public static final AccessServiceDescription PROJECT_MANAGEMENT_OMAS
-
SECURITY_MANAGER_OMAS
public static final AccessServiceDescription SECURITY_MANAGER_OMAS
-
SECURITY_OFFICER_OMAS
public static final AccessServiceDescription SECURITY_OFFICER_OMAS
-
SOFTWARE_DEVELOPER_OMAS
public static final AccessServiceDescription SOFTWARE_DEVELOPER_OMAS
-
STEWARDSHIP_ACTION_OMAS
public static final AccessServiceDescription STEWARDSHIP_ACTION_OMAS
-
SUBJECT_AREA_OMAS
public static final AccessServiceDescription SUBJECT_AREA_OMAS
-
-
Method Detail
-
values
public static AccessServiceDescription[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AccessServiceDescription c : AccessServiceDescription.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AccessServiceDescription valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getAccessServiceCode
public int getAccessServiceCode()
Return the code for this enum instance- Returns:
- int type code
-
getAccessServiceName
public String getAccessServiceName()
Return the default name for this enum instance.- Returns:
- String default name
-
getAccessServiceFullName
public String getAccessServiceFullName()
Return the formal name for this enum instance.- Returns:
- String default name
-
getAccessServiceURLMarker
public String getAccessServiceURLMarker()
Return the string that appears in the REST API URL that identifies the owning service. Null means no REST APIs supported by this service.- Returns:
- String default URL marker
-
getAccessServiceDescription
public String getAccessServiceDescription()
Return the default description for the type for this enum instance.- Returns:
- String default description
-
getAccessServiceWiki
public String getAccessServiceWiki()
Return the URL for the wiki page describing this access service.- Returns:
- String URL name for the wiki page
-
-