package org.gcube.accounting.messaging; @Deprecated public class QueueCouple { private String broker; private String scope; @Deprecated public QueueCouple(String broker, String scope) { super(); this.broker = broker; this.scope = scope; } @Deprecated public String getBroker() { return broker; } @Deprecated public void setBroker(String broker) { this.broker = broker; } @Deprecated public String getScope() { return scope; } @Deprecated public void setScope(String scope) { this.scope = scope; } }