cz.active24.client.fred.data.common.contact.DiscloseData 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.common.contact;
import java.io.Serializable;
/**
* Contact information disclosure settings.
*
*
* - {@link DiscloseData#addr} – the address disclosure setting as an empty element
* - {@link DiscloseData#voice} – the voice disclosure setting as an empty element
* - {@link DiscloseData#fax} – the fax disclosure setting as an empty element
* - {@link DiscloseData#email} – the email disclosure setting as an empty element
* - {@link DiscloseData#vat} – the VAT number disclosure setting as an empty element
* - {@link DiscloseData#ident} – the identity document disclosure setting as an empty element
* - {@link DiscloseData#notifyEmail} – the notification email disclosure setting as an empty element
* - {@link DiscloseData#flag} – disclose flag; false – listed items are hidden, true – listed items are published
*
*
* @see FRED documentation,
* Policies & Rules Of Disclosure
*/
public class DiscloseData implements Serializable {
private Object addr;
private Object voice;
private Object fax;
private Object email;
private Object vat;
private Object ident;
private Object notifyEmail;
private boolean flag;
public DiscloseData() {
}
public Object getAddr() {
return addr;
}
public void setAddr(Object addr) {
this.addr = addr;
}
public Object getVoice() {
return voice;
}
public void setVoice(Object voice) {
this.voice = voice;
}
public Object getFax() {
return fax;
}
public void setFax(Object fax) {
this.fax = fax;
}
public Object getEmail() {
return email;
}
public void setEmail(Object email) {
this.email = email;
}
public Object getVat() {
return vat;
}
public void setVat(Object vat) {
this.vat = vat;
}
public Object getIdent() {
return ident;
}
public void setIdent(Object ident) {
this.ident = ident;
}
public Object getNotifyEmail() {
return notifyEmail;
}
public void setNotifyEmail(Object notifyEmail) {
this.notifyEmail = notifyEmail;
}
public boolean getFlag() {
return flag;
}
public void setFlag(boolean flag) {
this.flag = flag;
}
@Override
public String toString() {
final StringBuffer sb = new StringBuffer("DiscloseData{");
sb.append("addr=").append(addr);
sb.append(", voice=").append(voice);
sb.append(", fax=").append(fax);
sb.append(", email=").append(email);
sb.append(", vat=").append(vat);
sb.append(", ident=").append(ident);
sb.append(", notifyEmail=").append(notifyEmail);
sb.append(", flag=").append(flag);
sb.append('}');
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy