All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cz.active24.client.fred.data.update.keyset.KeysetChangeData Maven / Gradle / Ivy

There is a newer version: 2.50
Show newest version
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