io.dddspring.common.port.adapter.messaging.slothmq.ClientRegistration Maven / Gradle / Ivy
// Copyright 2012,2013 Vaughn Vernon
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package io.dddspring.common.port.adapter.messaging.slothmq;
import java.net.InetAddress;
import java.net.UnknownHostException;
import java.util.HashSet;
import java.util.Set;
public class ClientRegistration {
private Set exchanges;
private InetAddress ipAddress;
private int port;
ClientRegistration(InetAddress anIPAddress, int aPort) {
super();
try {
this.exchanges = new HashSet();
this.ipAddress = anIPAddress == null ? InetAddress.getLocalHost() : anIPAddress;
this.port = aPort;
} catch (UnknownHostException e) {
throw new IllegalArgumentException("Cannot create client registration because unknown host.");
}
}
ClientRegistration(int aPort) {
this(null, aPort);
}
public void addSubscription(String anExchangeName) {
System.out.println("ADDING EXCHANGE: " + anExchangeName);
this.exchanges.add(anExchangeName);
}
public boolean matches(InetAddress anIPAddress, int aPort) {
return this.ipAddress.toString().equals(anIPAddress.toString()) && this.port == aPort;
}
public boolean isSubscribedTo(String anExchangeName) {
return this.exchanges.contains(anExchangeName);
}
public InetAddress ipAddress() {
return this.ipAddress;
}
public int port() {
return this.port;
}
public void removeSubscription(String anExchangeName) {
this.exchanges.remove(anExchangeName);
}
@Override
public String toString() {
return "ClientRegistration [ipAddress=" + this.ipAddress + ", port="
+ this.port + ", exchanges=" + this.exchanges + "]";
}
}