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

org.fabric3.spi.model.physical.PhysicalBindingHandler Maven / Gradle / Ivy

There is a newer version: 3.1.0
Show newest version
package org.fabric3.spi.model.physical;

import java.net.URI;

/**
 * Model class for a binding handler configuration.
 */
public class PhysicalBindingHandler {
    private URI handlerUri;

    /**
     * Constructor
     *
     * @param handlerUri the component URI of the handler
     */
    public PhysicalBindingHandler(URI handlerUri) {
        this.handlerUri = handlerUri;
    }

    /**
     * Returns the component URI of the handler.
     *
     * @return the component URI of the handler
     */
    public URI getHandlerUri() {
        return handlerUri;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy