com.maxxton.microdocs.publisher.ServerConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of microdocs-core-java Show documentation
Show all versions of microdocs-core-java Show documentation
MicroDocs core functionalities to share accross various projects
package com.maxxton.microdocs.publisher;
/**
* @author Steven Hermans
*/
public class ServerConfiguration {
private final String url;
private final String username;
private final String password;
public ServerConfiguration(String url) {
this.url = url;
username = null;
password = null;
}
public ServerConfiguration(String url, String username, String password) {
this.url = url;
this.username = username;
this.password = password;
}
public String getUsername() {
return username;
}
public String getPassword() {
return password;
}
public String getUrl() {
return url;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy