cz.active24.client.fred.data.update.keyset.KeysetAddData 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.keyset;
import cz.active24.client.fred.data.common.keyset.DnsKeyData;
import java.io.Serializable;
import java.util.List;
/**
* A keyset update command is used to alter details of a keyset.
*
*
* - {@link KeysetAddData#dnskey} - a DNS key(s), see {@link DnsKeyData}
* - {@link KeysetAddData#tech} - a handle of a contact that will be added as a technical contact(s)
*
*
* @see FRED documentation
*/
public class KeysetAddData implements Serializable {
private List dnskey;
private List tech;
public KeysetAddData() {
}
public List getDnskey() {
return dnskey;
}
public void setDnskey(List dnskey) {
this.dnskey = dnskey;
}
public List getTech() {
return tech;
}
public void setTech(List tech) {
this.tech = tech;
}
@Override
public String toString() {
final StringBuffer sb = new StringBuffer("KeysetAddData{");
sb.append("dnskey=").append(dnskey);
sb.append(", tech=").append(tech);
sb.append('}');
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy