cz.active24.client.fred.data.sendauthinfo.keyset.KeysetSendAuthInfoRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fred-client Show documentation
Show all versions of fred-client Show documentation
A Java EPP client for FRED (Free Registry for ENUM and Domains)
package cz.active24.client.fred.data.sendauthinfo.keyset;
import cz.active24.client.fred.data.EppRequest;
import cz.active24.client.fred.eppclient.objectstrategy.ServerObjectType;
import cz.active24.client.fred.data.sendauthinfo.SendAuthInfoRequest;
import java.io.Serializable;
/**
* A keyset sendAuthInfo command is used to provide the transfer password of a keyset to the technical contacts of the keyset.
*
*
* -
* {@link KeysetSendAuthInfoRequest#keysetId} - a keyset handle
*
*
*
* @see FRED documentation
*/
public class KeysetSendAuthInfoRequest extends EppRequest implements Serializable, SendAuthInfoRequest {
private String keysetId;
public KeysetSendAuthInfoRequest(String keysetId) {
setServerObjectType(ServerObjectType.KEYSET);
this.keysetId = keysetId;
}
public String getKeysetId() {
return keysetId;
}
protected void setKeysetId(String keysetId) {
this.keysetId = keysetId;
}
@Override
public String toString() {
final StringBuffer sb = new StringBuffer("KeysetSendAuthInfoRequest{");
sb.append("keysetId='").append(keysetId).append('\'');
sb.append('}');
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy