
org.joyqueue.model.query.QConsumer Maven / Gradle / Ivy
/**
* Copyright 2019 The JoyQueue Authors.
*
* 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.joyqueue.model.query;
import org.joyqueue.model.QKeyword;
import org.joyqueue.model.domain.Identity;
import org.joyqueue.model.domain.Namespace;
import org.joyqueue.model.domain.Topic;
import java.util.List;
public class QConsumer extends QKeyword implements QIdentity {
private Topic topic;
private Identity app;
private byte clientType = -1;
private String namespace;
private List appList;
private String referer;
public QConsumer() {}
public QConsumer(Topic topic) {
this.topic = topic;
this.namespace = topic.getNamespace().getCode();
}
public QConsumer(String referer) {
this.referer = referer;
}
public QConsumer(String topicCode, String namespaceCode, String appCode) {
this.topic = new Topic(topicCode);
this.topic.setNamespace(new Namespace(namespaceCode));
this.app = new Identity(appCode);
this.namespace = namespaceCode;
}
public Topic getTopic() {
return topic;
}
public void setTopic(Topic topic) {
this.topic = topic;
}
public Identity getApp() {
return app;
}
public void setApp(Identity app) {
this.app = app;
}
public byte getClientType() {
return clientType;
}
public void setClientType(byte clientType) {
this.clientType = clientType;
}
public String getNamespace() {
return namespace;
}
public void setNamespace(String namespace) {
this.namespace = namespace;
}
public List getAppList() {
return appList;
}
public void setAppList(List appList) {
this.appList = appList;
}
public String getReferer() {
return referer;
}
public void setReferer(String referer) {
this.referer = referer;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy