Package io.mosip.mimoto.constant
Enum ApiName
- java.lang.Object
-
- java.lang.Enum<ApiName>
-
- io.mosip.mimoto.constant.ApiName
-
- All Implemented Interfaces:
Serializable,Comparable<ApiName>
public enum ApiName extends Enum<ApiName>
The Enum ApiName.- Author:
- Rishabh Keshari
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ApiNamevalueOf(String name)Returns the enum constant of this type with the specified name.static ApiName[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTH
public static final ApiName AUTH
The auth.
-
AUTHINTERNAL
public static final ApiName AUTHINTERNAL
The authinternal.
-
MASTER
public static final ApiName MASTER
The master data.
-
AUDIT
public static final ApiName AUDIT
-
IDA
public static final ApiName IDA
The ida.
-
IDREPOSITORY
public static final ApiName IDREPOSITORY
The idrepository.
-
IDREPOGETIDBYUIN
public static final ApiName IDREPOGETIDBYUIN
The idrepository get id by uin.
-
UINGENERATOR
public static final ApiName UINGENERATOR
The uingenerator.
-
IDREPODEV
public static final ApiName IDREPODEV
The idrepodev.
-
CRYPTOMANAGERDECRYPT
public static final ApiName CRYPTOMANAGERDECRYPT
The Cryptomaanger *.
-
ENCRYPTURL
public static final ApiName ENCRYPTURL
-
IDAUTHENCRYPTION
public static final ApiName IDAUTHENCRYPTION
-
IDAUTHPUBLICKEY
public static final ApiName IDAUTHPUBLICKEY
-
REVERSEDATASYNC
public static final ApiName REVERSEDATASYNC
The ReverseDataSync *.
-
DEVICESHISTORIES
public static final ApiName DEVICESHISTORIES
The Device history *.
-
REGISTRATIONCENTERDEVICEHISTORY
public static final ApiName REGISTRATIONCENTERDEVICEHISTORY
The Reg center device history *.
-
REGISTRATIONCENTERTIMESTAMP
public static final ApiName REGISTRATIONCENTERTIMESTAMP
The registration center timestamp *.
-
REGISTRATIONCONNECTOR
public static final ApiName REGISTRATIONCONNECTOR
The registration connector *.
-
ENCRYPTIONSERVICE
public static final ApiName ENCRYPTIONSERVICE
The encryptionservice.
-
RIDGENERATION
public static final ApiName RIDGENERATION
The ridgeneration.
-
RETRIEVEIDENTITY
public static final ApiName RETRIEVEIDENTITY
The retrieveidentity.
-
RETRIEVEIDENTITYFROMRID
public static final ApiName RETRIEVEIDENTITYFROMRID
The retrieveidentity using rid.
-
DIGITALSIGNATURE
public static final ApiName DIGITALSIGNATURE
The digitalsignature.
-
CREATEVID
public static final ApiName CREATEVID
The Vid creation.
-
USERDETAILS
public static final ApiName USERDETAILS
The user details.
-
GETRIDFROMUSERID
public static final ApiName GETRIDFROMUSERID
get operator rid from id.
-
INTERNALAUTH
public static final ApiName INTERNALAUTH
The internalauth.
-
TEMPLATES
public static final ApiName TEMPLATES
The templates.
-
GETUINBYVID
public static final ApiName GETUINBYVID
-
DEVICEVALIDATEHISTORY
public static final ApiName DEVICEVALIDATEHISTORY
-
DECRYPTPINBASSED
public static final ApiName DECRYPTPINBASSED
-
CREATEDATASHARE
public static final ApiName CREATEDATASHARE
-
NGINXDMZURL
public static final ApiName NGINXDMZURL
-
IDSCHEMAURL
public static final ApiName IDSCHEMAURL
-
RESIDENT_OTP
public static final ApiName RESIDENT_OTP
-
RESIDENT_VID
public static final ApiName RESIDENT_VID
-
RESIDENT_CREDENTIAL_REQUEST
public static final ApiName RESIDENT_CREDENTIAL_REQUEST
-
RESIDENT_CREDENTIAL_REQUEST_STATUS
public static final ApiName RESIDENT_CREDENTIAL_REQUEST_STATUS
-
RESIDENT_AUTH_LOCK
public static final ApiName RESIDENT_AUTH_LOCK
-
RESIDENT_AUTH_UNLOCK
public static final ApiName RESIDENT_AUTH_UNLOCK
-
-
Method Detail
-
values
public static ApiName[] 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 (ApiName c : ApiName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ApiName 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
-
-