com.fizzgate.proxy.dubbo.DubboInterfaceDeclaration Maven / Gradle / Ivy
/*
* Copyright (C) 2021 the original author or authors.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package com.fizzgate.proxy.dubbo;
/**
*
* @author linwaiwai
* @author Francis Dong
*
*/
public class DubboInterfaceDeclaration {
private String parameterTypes;
private String method;
private String serviceName;
private String version;
private String group;
private int timeout;
public DubboInterfaceDeclaration() {
}
public String getParameterTypes() {
return parameterTypes;
}
// call method name
public String getMethod() {
return method;
}
// service name
public String getServiceName() {
return serviceName;
}
public void setServiceName(String serviceName) {
this.serviceName = serviceName;
}
public void setMethod(String method) {
this.method = method;
}
public void setParameterTypes(String parameterTypes) {
this.parameterTypes = parameterTypes;
}
public void setTimeout(int timeout) {
this.timeout = timeout;
}
public Integer getTimeout() {
return this.timeout;
}
public String getVersion() {
return version;
}
public void setVersion(String version) {
this.version = version;
}
public String getGroup() {
return group;
}
public void setGroup(String group) {
this.group = group;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy