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

com.openfin.desktop.ClientIdentity Maven / Gradle / Ivy

There is a newer version: 11.0.2
Show newest version
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);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy