com.openfin.desktop.fdc3.IntentMetadata 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.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;
}
}