com.openfin.desktop.ClientIdentity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openfin-desktop-java-adapter Show documentation
Show all versions of openfin-desktop-java-adapter Show documentation
The Java API for OpenFin Runtime
package com.openfin.desktop;
import org.json.JSONObject;
public class ClientIdentity extends Identity {
public ClientIdentity() {
}
public ClientIdentity(JSONObject json) {
super(json);
}
public ClientIdentity(String uuid, String name, String endpointId) {
super(uuid, name);
this.setEndpointId(endpointId);
}
public String getEndpointId() {
return this.getString("endpointId");
}
public void setEndpointId(String endpointId) {
this.setString("endpointId", endpointId);
}
}