com.duoec.doc.doclet.pojo.DubboInfo Maven / Gradle / Ivy
package com.duoec.doc.doclet.pojo;
import java.io.Serializable;
/**
* 对应 @DubboService 注解的信息
*
* @author xuwenzhen
*/
public class DubboInfo implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 接口名
*/
private String interfaceName;
/**
* 版本号
*/
private String version;
/**
* 超时时间,单位:毫秒
*/
private Integer timeout;
/**
* 分组
*/
private String group;
private Integer retries;
private String path;
public String getInterfaceName() {
return interfaceName;
}
public void setInterfaceName(String interfaceName) {
this.interfaceName = interfaceName;
}
public String getVersion() {
return version;
}
public void setVersion(String version) {
this.version = version;
}
public void setTimeout(Integer timeout) {
this.timeout = timeout;
}
public Integer getTimeout() {
return timeout;
}
public String getGroup() {
return group;
}
public void setGroup(String group) {
this.group = group;
}
public Integer getRetries() {
return retries;
}
public void setRetries(Integer retries) {
this.retries = retries;
}
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy