cz.active24.client.fred.data.sendauthinfo.nsset.NssetSendAuthInfoRequest 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.nsset;
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 nsset sendAuthInfo command is used to provide the transfer password of an nsset to the technical contacts of the nsset.
*
*
* -
* {@link NssetSendAuthInfoRequest#nssetId} - an nsset handle
*
*
*
* @see FRED documentation
*/
public class NssetSendAuthInfoRequest extends EppRequest implements Serializable, SendAuthInfoRequest {
private String nssetId;
public NssetSendAuthInfoRequest(String nssetId) {
setServerObjectType(ServerObjectType.NSSET);
this.nssetId = nssetId;
}
public String getNssetId() {
return nssetId;
}
protected void setNssetId(String nssetId) {
this.nssetId = nssetId;
}
@Override
public String toString() {
final StringBuffer sb = new StringBuffer("NssetSendAuthInfoRequest{");
sb.append("nssetId='").append(nssetId).append('\'');
sb.append('}');
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy