cz.active24.client.fred.data.update.domain.DomainRemData 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.domain;
import java.io.Serializable;
import java.util.List;
/**
* A domain update command is used to alter details of a domain.
*
*
* - {@link DomainRemData#admin} - a list of contact handles that will be removed from the list of administration contacts of this domain
*
*
* @see FRED documentation
*/
public class DomainRemData implements Serializable {
private List admin;
public DomainRemData() {
}
public DomainRemData(List adminContacts) {
admin = adminContacts;
}
public List getAdmin() {
return admin;
}
public void setAdmin(List admin) {
this.admin = admin;
}
@Override
public String toString() {
final StringBuffer sb = new StringBuffer("DomainRemData{");
sb.append("admin=").append(admin);
sb.append('}');
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy