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

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

There is a newer version: 11.0.2
Show newest version
package com.openfin.desktop;

import org.json.JSONObject;

public class Identity extends JsonBean {

	public Identity() {
	}
	
	public Identity(JSONObject json) {
		super(json);
	}
	
	public Identity(String uuid, String name) {
		this.setUuid(uuid);
		this.setName(name);
	}

	public String getUuid() {
		return this.getString("uuid");
	}
	
	public void setUuid(String uuid) {
		this.setString("uuid", uuid);
	}

	public String getName() {
		return this.getString("name");
	}
	
	public void setName(String name) {
		this.setString("name", name);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy