org.hawkular.bus.common.Endpoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hawkular-bus-common Show documentation
Show all versions of hawkular-bus-common Show documentation
Hawkular Bus Framework Common Library for use with both consumer and producer code.
/*
* Copyright 2014-2016 Red Hat, Inc. and/or its affiliates
* and other contributors as indicated by the @author tags.
*
* 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 org.hawkular.bus.common;
import java.net.URI;
/**
* POJO that indicates the type of endpoint (queue or topic) and that queue or topic's name.
*/
public class Endpoint {
public static final Endpoint TEMPORARY_QUEUE = new Endpoint(Type.QUEUE, "__tmpQueue__", true);
public static final Endpoint TEMPORARY_TOPIC = new Endpoint(Type.TOPIC, "__tmpTopic__", true);
public enum Type {
QUEUE, TOPIC
}
private final Type type;
private final String name;
private final boolean isTemp;
/**
* An endpoint as specified in URI format: "type://name"
*
* @param destination the endpoint
* @throws IllegalArgumentException invalid or null destination string
*/
public Endpoint(String destination) throws IllegalArgumentException {
if (destination == null) {
throw new IllegalArgumentException("destination must not be null");
}
URI uri;
try {
uri = new URI(destination);
} catch (Exception e) {
throw new IllegalArgumentException("Not a valid destination URI: " + destination);
}
String typeStr = uri.getScheme().toUpperCase();
Type type;
try {
type = Type.valueOf(typeStr);
} catch (Exception e) {
throw new IllegalArgumentException("Not a valid destination URI [" + destination
+ "]; the endpoint type must be either QUEUE or TOPIC: " + typeStr);
}
String name = uri.getHost();
this.type = type;
this.name = name;
this.isTemp = false;
}
public Endpoint(Type type, String name) {
this(type, name, false);
}
public Endpoint(Type type, String name, boolean isTemp) {
if (type == null) {
throw new IllegalArgumentException("type must not be null");
}
if (name == null) {
throw new IllegalArgumentException("name must not be null");
}
this.type = type;
this.name = name;
this.isTemp = isTemp;
}
public Type getType() {
return type;
}
public String getName() {
return name;
}
public boolean isTemporary() {
return isTemp;
}
@Override
public String toString() {
if (isTemporary()) {
return "{" + type.name() + "}$TEMPORARY$";
} else {
return "{" + type.name() + "}" + name;
}
}
@Override
public int hashCode() {
int result = 1;
result = 31 * result + name.hashCode();
result = 31 * result + type.hashCode();
result = 31 * result + (isTemp ? 1231 : 1237);
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof Endpoint)) {
return false;
}
Endpoint other = (Endpoint) obj;
if (type != other.type) {
return false;
}
if (!name.equals(other.name)) {
return false;
}
if (isTemp != other.isTemp) {
return false;
}
return true;
}
}