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

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

There is a newer version: 11.0.2
Show newest version
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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy