cz.active24.client.fred.data.info.domain.DomainInfoRequest 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.info.domain;
import cz.active24.client.fred.data.EppRequest;
import cz.active24.client.fred.data.info.InfoRequest;
import cz.active24.client.fred.eppclient.objectstrategy.ServerObjectType;
import java.io.Serializable;
/**
* Data for command info for domain.
*
*
* - {@link DomainInfoRequest#domainName} - domain name
*
*
* @see FRED documentation
*/
public class DomainInfoRequest extends EppRequest implements Serializable, InfoRequest {
private String domainName;
public DomainInfoRequest(String domainName) {
setServerObjectType(ServerObjectType.DOMAIN);
this.domainName = domainName;
}
public String getDomainName() {
return domainName;
}
protected void setDomainName(String domainName) {
this.domainName = domainName;
}
@Override
public String toString() {
final StringBuffer sb = new StringBuffer("DomainInfoRequest{");
sb.append("domainName='").append(domainName).append('\'');
sb.append('}');
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy