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

irita.sdk.module.service.DefineServiceRequest Maven / Gradle / Ivy

There is a newer version: 0.13
Show newest version
package irita.sdk.module.service;

import java.util.List;

// DefineServiceRequest defines the request parameters of the service definition
public class DefineServiceRequest {
    private String serviceName;
    private String description;
    private List tags;
    private String authorDescription;
    private String schemas;

    public String getServiceName() {
        return serviceName;
    }

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

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public List getTags() {
        return tags;
    }

    public void setTags(List tags) {
        this.tags = tags;
    }

    public String getAuthorDescription() {
        return authorDescription;
    }

    public void setAuthorDescription(String authorDescription) {
        this.authorDescription = authorDescription;
    }

    public String getSchemas() {
        return schemas;
    }

    public void setSchemas(String schemas) {
        this.schemas = schemas;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy