cz.active24.client.fred.data.delete.nsset.NssetDeleteRequest 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.delete.nsset;
import cz.active24.client.fred.data.EppRequest;
import cz.active24.client.fred.data.delete.DeleteRequest;
import cz.active24.client.fred.eppclient.objectstrategy.ServerObjectType;
import java.io.Serializable;
/**
* A nsset delete command is used to delete an nsset whose status allows it to be deleted.
*
* - {@link NssetDeleteRequest#nssetId} - the nsset handle
*
*
* @see FRED documentation
*/
public class NssetDeleteRequest extends EppRequest implements Serializable, DeleteRequest {
private String nssetId;
public NssetDeleteRequest(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("NssetDeleteRequest{");
sb.append("nssetId='").append(nssetId).append('\'');
sb.append('}');
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy