All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.thinkerou.karate.domain.ProtoName Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
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