com.github.luohaha.jlitespider.setting.MqObject Maven / Gradle / Ivy
package com.github.luohaha.jlitespider.setting;
public class MqObject {
private String name;
private String host;
private int port;
private int qos;
private String queue;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getPort() {
return port;
}
public void setPort(int port) {
this.port = port;
}
public String getHost() {
return host;
}
public void setHost(String host) {
this.host = host;
}
public int getQos() {
return qos;
}
public void setQos(int qos) {
this.qos = qos;
}
public String getQueue() {
return queue;
}
public void setQueue(String queue) {
this.queue = queue;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy