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

com.openfin.desktop.fdc3.AppMetadata Maven / Gradle / Ivy

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

import org.json.JSONObject;

/**
 * App metadata is Desktop Agent specific - but should always support a name property.
 * @author Anthony
 *
 */
public class AppMetadata extends JSONObject {

	private String name;
	
	public AppMetadata(String name) {
		this.name = name;
	}
	
	public String getName() {
		return this.name;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy