org.fabric3.spi.discovery.ChannelEntry Maven / Gradle / Ivy
The newest version!
package org.fabric3.spi.discovery;
/**
* A channel entry.
*/
public class ChannelEntry extends AbstractEntry {
public ChannelEntry() {
}
public ChannelEntry(String name, String address, int port, String transport) {
this.name = name;
this.address = address;
this.port = port;
this.transport = transport;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy