package message.amqp.core; /** * . * * @author sunhao(sunhao.java@gmail.com) * @version V1.0, 2014-10-7 10:03 */ public class Queue { private String name; private String exchange; private String routingKey; private String ref; private String method; public String getName() { return name; } public void setName(String name) { this.name = name; } public String getExchange() { return exchange; } public void setExchange(String exchange) { this.exchange = exchange; } public String getRoutingKey() { return routingKey; } public void setRoutingKey(String routingKey) { this.routingKey = routingKey; } public String getRef() { return ref; } public void setRef(String ref) { this.ref = ref; } public String getMethod() { return method; } public void setMethod(String method) { this.method = method; } }