com.openfin.desktop.fdc3.IntentResolution 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;
/**
* IntentResolution provides a standard format for data returned upon resolving an intent.
* @author Anthony
*
*/
public class IntentResolution {
private String source;
private Object data;
private String version;
public IntentResolution(String source, Object data, String version) {
this.source = source;
this.data = data;
this.version = version;
}
public String getSource() {
return source;
}
public Object getData() {
return data;
}
public String getVersion() {
return version;
}
}