
org.joyqueue.model.query.QProducer 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.Topic;
import java.util.List;
public class QProducer extends QKeyword implements QIdentity {
private Topic topic;
private Identity app;
private List appList;
public QProducer() {
}
public QProducer(Topic topic) {
this.topic = topic;
}
public QProducer(Identity app) {
this.app = app;
}
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 List getAppList() {
return appList;
}
public void setAppList(List appList) {
this.appList = appList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy