cz.active24.client.fred.data.update.nsset.NssetRemData 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.update.nsset;
import java.io.Serializable;
import java.util.List;
/**
* A nsset update command is used to alter details of an nsset.
*
*
* - {@link NssetRemData#name} - a nameserver hostname
* - {@link NssetRemData#tech} - a handle of nsset’s technical contact(s)
*
*
* @see FRED documentation
*/
public class NssetRemData implements Serializable {
private List name;
private List tech;
public NssetRemData() {
}
public List getName() {
return name;
}
public void setName(List name) {
this.name = name;
}
public List getTech() {
return tech;
}
public void setTech(List tech) {
this.tech = tech;
}
@Override
public String toString() {
final StringBuffer sb = new StringBuffer("NssetRemData{");
sb.append("name=").append(name);
sb.append(", tech=").append(tech);
sb.append('}');
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy