cz.active24.client.fred.data.info.nsset.NssetInfoRequest 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.info.nsset;
import cz.active24.client.fred.data.info.InfoRequest;
import cz.active24.client.fred.data.EppRequest;
import cz.active24.client.fred.eppclient.objectstrategy.ServerObjectType;
import java.io.Serializable;
/**
* Nsset info request.
*
*
* - {@link NssetInfoRequest#id} – a nsset handle
*
*
* @see FRED documentation
*/
public class NssetInfoRequest extends EppRequest implements Serializable, InfoRequest {
private String id;
public NssetInfoRequest(String nssetId) {
setServerObjectType(ServerObjectType.NSSET);
this.id = nssetId;
}
public String getId() {
return id;
}
protected void setId(String id) {
this.id = id;
}
@Override
public String toString() {
final StringBuffer sb = new StringBuffer("NssetInfoRequest{");
sb.append("id='").append(id).append('\'');
sb.append('}');
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy