com.github.thinkerou.karate.domain.ProtoName Maven / Gradle / Ivy
package com.github.thinkerou.karate.domain;
/**
* ProtoName
*
* @author thinkerou
*/
public class ProtoName {
private String packageName;
private String serviceName;
private String methodName;
public ProtoName(String packageName, String serviceName, String methodName) {
this.packageName = packageName;
this.serviceName = serviceName;
this.methodName = methodName;
}
public String getPackageName() {
return packageName;
}
public String getServiceName() {
return serviceName;
}
public String getMethodName() {
return methodName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy