Class ActivationCreateResponse
java.lang.Object
io.getlime.security.powerauth.rest.api.model.response.v2.ActivationCreateResponse
public class ActivationCreateResponse
extends java.lang.Object
Response object for /pa/activation/create end-point.
- Author:
- Petr Dvorak, petr@wultra.com
-
Constructor Summary
Constructors Constructor Description ActivationCreateResponse() -
Method Summary
Modifier and Type Method Description java.lang.StringgetActivationId()Get activation IDjava.lang.StringgetActivationNonce()Get activation nonce.java.util.Map<java.lang.String,java.lang.Object>getCustomAttributes()Custom attributes for the response.java.lang.StringgetEncryptedServerPublicKey()Get encrypted server public key.java.lang.StringgetEncryptedServerPublicKeySignature()Get server data signature.java.lang.StringgetEphemeralPublicKey()Get ephemeral public key.voidsetActivationId(java.lang.String activationId)Set activation IDvoidsetActivationNonce(java.lang.String activationNonce)Set activation nonce.voidsetCustomAttributes(java.util.Map<java.lang.String,java.lang.Object> customAttributes)Custom attributes for the response.voidsetEncryptedServerPublicKey(java.lang.String encryptedServerPublicKey)Set encrypted server public key.voidsetEncryptedServerPublicKeySignature(java.lang.String encryptedServerPublicKeySignature)Set server data signature.voidsetEphemeralPublicKey(java.lang.String ephemeralPublicKey)Set ephemeral public key.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
ActivationCreateResponse
public ActivationCreateResponse()
-
-
Method Details
-
getActivationId
public java.lang.String getActivationId()Get activation ID- Returns:
- Activation ID
-
setActivationId
public void setActivationId(java.lang.String activationId)Set activation ID- Parameters:
activationId- Activation ID
-
getActivationNonce
public java.lang.String getActivationNonce()Get activation nonce.- Returns:
- Activation nonce.
-
setActivationNonce
public void setActivationNonce(java.lang.String activationNonce)Set activation nonce.- Parameters:
activationNonce- Activation nonce.
-
getEphemeralPublicKey
public java.lang.String getEphemeralPublicKey()Get ephemeral public key.- Returns:
- Ephemeral public key.
-
setEphemeralPublicKey
public void setEphemeralPublicKey(java.lang.String ephemeralPublicKey)Set ephemeral public key.- Parameters:
ephemeralPublicKey- Ephemeral public key.
-
getEncryptedServerPublicKey
public java.lang.String getEncryptedServerPublicKey()Get encrypted server public key.- Returns:
- Encrypted server public key.
-
setEncryptedServerPublicKey
public void setEncryptedServerPublicKey(java.lang.String encryptedServerPublicKey)Set encrypted server public key.- Parameters:
encryptedServerPublicKey- Encrypted server public key.
-
getEncryptedServerPublicKeySignature
public java.lang.String getEncryptedServerPublicKeySignature()Get server data signature.- Returns:
- Server data signature.
-
setEncryptedServerPublicKeySignature
public void setEncryptedServerPublicKeySignature(java.lang.String encryptedServerPublicKeySignature)Set server data signature.- Parameters:
encryptedServerPublicKeySignature- Server data signature.
-
getCustomAttributes
public java.util.Map<java.lang.String,java.lang.Object> getCustomAttributes()Custom attributes for the response.- Returns:
- Custom response attributes.
-
setCustomAttributes
public void setCustomAttributes(java.util.Map<java.lang.String,java.lang.Object> customAttributes)Custom attributes for the response.- Parameters:
customAttributes- Custom response attributes.
-