Enum RestServicesConstants
- java.lang.Object
-
- java.lang.Enum<RestServicesConstants>
-
- io.mosip.authentication.core.constant.RestServicesConstants
-
- All Implemented Interfaces:
Serializable,Comparable<RestServicesConstants>
public enum RestServicesConstants extends Enum<RestServicesConstants>
The Enum RestServiceContants - contains service names based on which RestRequestFactory will build rest requests from properties.- Author:
- Manoj SP, Nagarjuna K
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUDIT_MANAGER_SERVICEThe audit manager service.CRED_REQUEST_GET_REQUEST_IDSCRED_REQUEST_RETRIGGER_CRED_ISSUANCEDATA_SHARE_GETDEVICE_VERIFICATION_SERVICEID_MASTERDATA_TEMPLATE_SERVICEID_MASTERDATA_TEMPLATE_SERVICE_MULTILANGID_PMP_SERVICEID_REPO_SERVICEID_REPO_SERVICE_WITHOUT_TYPEMAIL_NOTIFICATION_SERVICEMail notification service.OTP_GENERATE_SERVICEThe otp generate service.OTP_VALIDATE_SERVICEThe otp validate service.RID_UINRID_UIN_WITHOUT_TYPESMS_NOTIFICATION_SERVICESMS notification service.TITLE_SERVICETOKEN_ID_GENERATORUSERID_RIDVID_SERVICEVID_UPDATE_STATUS_SERVICE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetServiceName()Gets the service name.static RestServicesConstantsvalueOf(String name)Returns the enum constant of this type with the specified name.static RestServicesConstants[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUDIT_MANAGER_SERVICE
public static final RestServicesConstants AUDIT_MANAGER_SERVICE
The audit manager service.
-
OTP_GENERATE_SERVICE
public static final RestServicesConstants OTP_GENERATE_SERVICE
The otp generate service.
-
OTP_VALIDATE_SERVICE
public static final RestServicesConstants OTP_VALIDATE_SERVICE
The otp validate service.
-
MAIL_NOTIFICATION_SERVICE
public static final RestServicesConstants MAIL_NOTIFICATION_SERVICE
Mail notification service.
-
SMS_NOTIFICATION_SERVICE
public static final RestServicesConstants SMS_NOTIFICATION_SERVICE
SMS notification service.
-
ID_REPO_SERVICE
public static final RestServicesConstants ID_REPO_SERVICE
-
ID_REPO_SERVICE_WITHOUT_TYPE
public static final RestServicesConstants ID_REPO_SERVICE_WITHOUT_TYPE
-
ID_MASTERDATA_TEMPLATE_SERVICE
public static final RestServicesConstants ID_MASTERDATA_TEMPLATE_SERVICE
-
ID_MASTERDATA_TEMPLATE_SERVICE_MULTILANG
public static final RestServicesConstants ID_MASTERDATA_TEMPLATE_SERVICE_MULTILANG
-
TITLE_SERVICE
public static final RestServicesConstants TITLE_SERVICE
-
USERID_RID
public static final RestServicesConstants USERID_RID
-
RID_UIN
public static final RestServicesConstants RID_UIN
-
RID_UIN_WITHOUT_TYPE
public static final RestServicesConstants RID_UIN_WITHOUT_TYPE
-
VID_SERVICE
public static final RestServicesConstants VID_SERVICE
-
VID_UPDATE_STATUS_SERVICE
public static final RestServicesConstants VID_UPDATE_STATUS_SERVICE
-
TOKEN_ID_GENERATOR
public static final RestServicesConstants TOKEN_ID_GENERATOR
-
DEVICE_VERIFICATION_SERVICE
public static final RestServicesConstants DEVICE_VERIFICATION_SERVICE
-
ID_PMP_SERVICE
public static final RestServicesConstants ID_PMP_SERVICE
-
DATA_SHARE_GET
public static final RestServicesConstants DATA_SHARE_GET
-
CRED_REQUEST_GET_REQUEST_IDS
public static final RestServicesConstants CRED_REQUEST_GET_REQUEST_IDS
-
CRED_REQUEST_RETRIGGER_CRED_ISSUANCE
public static final RestServicesConstants CRED_REQUEST_RETRIGGER_CRED_ISSUANCE
-
-
Method Detail
-
values
public static RestServicesConstants[] 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 (RestServicesConstants c : RestServicesConstants.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RestServicesConstants 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
-
getServiceName
public String getServiceName()
Gets the service name.- Returns:
- the service name
-
-