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

com.gomcarter.frameworks.httpapi.message.MessageConfig Maven / Gradle / Ivy

There is a newer version: 2.0.10
Show newest version
package com.gomcarter.frameworks.httpapi.message;

/**
 * @author gomcarter
 */
public class MessageConfig {

    private String urlSchema = "http";

    private String host;

    private int port = 80;

    private String apiPath;

    public String getUrlSchema() {
        return urlSchema;
    }

    public void setUrlSchema(String urlSchema) {
        this.urlSchema = urlSchema;
    }

    public String getHost() {
        return host;
    }

    public void setHost(String host) {
        this.host = host;
    }

    public int getPort() {
        return port;
    }

    public void setPort(int port) {
        this.port = port;
    }

    public String getApiPath() {
        return apiPath;
    }

    public void setApiPath(String apiPath) {
        this.apiPath = apiPath;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy