org.bidib.wizard.api.event.ServiceRegistrationRefreshEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bidibwizard-api Show documentation
Show all versions of bidibwizard-api Show documentation
jBiDiB BiDiB Wizard API POM
package org.bidib.wizard.api.event;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
public class ServiceRegistrationRefreshEvent {
private final String connectionId;
private final long uniqueId;
public ServiceRegistrationRefreshEvent(String connectionId, long uniqueId) {
this.connectionId = connectionId;
this.uniqueId = uniqueId;
}
/**
* @return the connectionId
*/
public String getConnectionId() {
return connectionId;
}
/**
* @return the uniqueId
*/
public long getUniqueId() {
return uniqueId;
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this, ToStringStyle.SHORT_PREFIX_STYLE);
}
}