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

com.openfin.desktop.channel.ConnectionEvent Maven / Gradle / Ivy

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

public class ConnectionEvent {
	private String channelId;
	private String uuid;
	private String name;
	private String channelName;
	private String endpointId;

	public ConnectionEvent(String channelId, String uuid, String name, String channelName, String endpointId) {
		this.channelId = channelId;
		this.uuid = uuid;
		this.name = name;
		this.channelName = channelName;
		this.endpointId = endpointId;
	}

	public String getChannelId() {
		return channelId;
	}

	public String getUuid() {
		return uuid;
	}

	public String getName() {
		return name;
	}

	public String getChannelName() {
		return channelName;
	}
	
	public String getEndpointId() {
		return endpointId;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy