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

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

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

/**
 * The class used to describe an Intent within the platform.
 * @author Anthony
 *
 */
public class IntentMetadata {

	private String name;
	private String displayName;

	public IntentMetadata(String name, String displayName) {
		this.name = name;
		this.displayName = displayName;
	}

	public String getName() {
		return name;
	}

	public String getDisplayName() {
		return displayName;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy