All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cz.active24.client.fred.data.delete.nsset.NssetDeleteRequest Maven / Gradle / Ivy

There is a newer version: 2.50
Show newest version
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