org.bidib.jbidibc.netbidib.ConnectionUpdateEvent Maven / Gradle / Ivy
package org.bidib.jbidibc.netbidib;
/**
* The ConnectionUpdateEvent informs the application about changes of the connections and is triggered as an user event.
*/
public class ConnectionUpdateEvent {
private final String connectedTo;
/**
* Constructor with details about the connected system.
*
* @param connectedTo
* details about the connected system
*/
public ConnectionUpdateEvent(String connectedTo) {
this.connectedTo = connectedTo;
}
public String getConnectedTo() {
return connectedTo;
}
}