Enum PartnerEventTypes
- java.lang.Object
-
- java.lang.Enum<PartnerEventTypes>
-
- io.mosip.authentication.core.constant.PartnerEventTypes
-
- All Implemented Interfaces:
Serializable,Comparable<PartnerEventTypes>
public enum PartnerEventTypes extends Enum<PartnerEventTypes>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description API_KEY_APPROVEDMISP_LIC_GENERATEDMISP_LIC_UPDATEDOIDC_CLI_CREATEDOIDC_CLI_UPDATEDPARTNER_API_KEY_UPDATEDPARTNER_UPDATEDPOLICY_UPDATED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetName()StringgetTopicPropertyName()static PartnerEventTypesvalueOf(String name)Returns the enum constant of this type with the specified name.static PartnerEventTypes[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
API_KEY_APPROVED
public static final PartnerEventTypes API_KEY_APPROVED
-
MISP_LIC_GENERATED
public static final PartnerEventTypes MISP_LIC_GENERATED
-
MISP_LIC_UPDATED
public static final PartnerEventTypes MISP_LIC_UPDATED
-
PARTNER_UPDATED
public static final PartnerEventTypes PARTNER_UPDATED
-
PARTNER_API_KEY_UPDATED
public static final PartnerEventTypes PARTNER_API_KEY_UPDATED
-
POLICY_UPDATED
public static final PartnerEventTypes POLICY_UPDATED
-
OIDC_CLI_CREATED
public static final PartnerEventTypes OIDC_CLI_CREATED
-
OIDC_CLI_UPDATED
public static final PartnerEventTypes OIDC_CLI_UPDATED
-
-
Method Detail
-
values
public static PartnerEventTypes[] 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 (PartnerEventTypes c : PartnerEventTypes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PartnerEventTypes 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
-
getName
public String getName()
-
getTopicPropertyName
public String getTopicPropertyName()
-
-