cz.active24.client.fred.data.update.keyset.KeysetChangeData 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 java.io.Serializable;
/**
* A keyset update command is used to alter details of a keyset.
*
*
* - {@link KeysetChangeData#authInfo} - change the keyset’s authorization information (transfer password)
*
*
* @see FRED documentation
*/
public class KeysetChangeData implements Serializable {
private String authInfo;
public KeysetChangeData() {
}
public String getAuthInfo() {
return authInfo;
}
public void setAuthInfo(String authInfo) {
this.authInfo = authInfo;
}
@Override
public String toString() {
final StringBuffer sb = new StringBuffer("KeysetChangeData{");
sb.append("authInfo='").append(authInfo).append('\'');
sb.append('}');
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy