cz.active24.client.fred.data.common.domain.EnumValData 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.domain;
import java.io.Serializable;
import java.util.Date;
/**
* The enum data extension is used to display the validation of an ENUM domain and/or its publish flag.
*
*
* - {@link EnumValData#valExDate} – the validation expiration date
* - {@link EnumValData#publish} – the setting for publishing the ENUM domain in a public directory; true – display, false – hide
*
*
* @see FRED documentation
*/
public class EnumValData implements Serializable {
private Date valExDate;
private Boolean publish;
public EnumValData() {
}
public EnumValData(Date valExDate) {
this.valExDate = valExDate;
}
public Date getValExDate() {
return valExDate;
}
public void setValExDate(Date valExDate) {
this.valExDate = valExDate;
}
public Boolean getPublish() {
return publish;
}
public void setPublish(Boolean publish) {
this.publish = publish;
}
@Override
public String toString() {
final StringBuffer sb = new StringBuffer("EnumValData{");
sb.append("valExDate=").append(valExDate);
sb.append(", publish=").append(publish);
sb.append('}');
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy