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

org.bidib.wizard.api.event.ServiceRegistrationRefreshEvent Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy