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

com.ithit.webdav.integration.android.AndroidServerConfig Maven / Gradle / Ivy

The newest version!
package com.ithit.webdav.integration.android;

/**
 * Created by ophiuhus on 2017/10/10.
 */
public class AndroidServerConfig {

    private String scheme = "http";
    private String serverName = "localhost";
    private int port = 8181;


    public AndroidServerConfig(String scheme, String serverName, int port) {
        this.scheme = scheme;
        this.serverName = serverName;
        this.port = port;
    }

    public AndroidServerConfig() {
    }

    public String getScheme() {
        return scheme;
    }

    public void setScheme(String scheme) {
        this.scheme = scheme;
    }

    public String getServerName() {
        return serverName;
    }

    public void setServerName(String serverName) {
        this.serverName = serverName;
    }

    public int getPort() {
        return port;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy