cz.active24.client.fred.data.info.keyset.KeysetInfoRequest 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.keyset;
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;
/**
* Keyset info request.
*
*
* - {@link KeysetInfoRequest#id} – a keyset handle as fredcom:objIDType
*
*
* @see FRED documentation
*/
public class KeysetInfoRequest extends EppRequest implements Serializable, InfoRequest {
private String id;
public KeysetInfoRequest(String keysetId) {
setServerObjectType(ServerObjectType.KEYSET);
this.id = keysetId;
}
public String getId() {
return id;
}
protected void setId(String id) {
this.id = id;
}
@Override
public String toString() {
final StringBuffer sb = new StringBuffer("KeysetInfoRequest{");
sb.append("id='").append(id).append('\'');
sb.append('}');
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy