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

com.volcengine.sign.ServiceInfo Maven / Gradle / Ivy

There is a newer version: 1.0.75
Show newest version
package com.volcengine.sign;

/**
 * [email protected]
 * 2022/3/18 14:08
 */
public class ServiceInfo {
    private String serviceName;
    private String method;

    public ServiceInfo(String serviceName, String method) {
        this.serviceName = serviceName;
        this.method = method;
    }

    public ServiceInfo() {
    }

    public String getServiceName() {
        return serviceName;
    }

    public void setServiceName(String serviceName) {
        this.serviceName = serviceName;
    }

    public String getMethod() {
        return method;
    }

    public void setMethod(String method) {
        this.method = method;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy