accounting-lib/src/main/java/org/gcube/accounting/messaging/QueueCouple.java

41 lines
552 B
Java

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;
}
}