de.sekmi.li2b2.hive.Credentials Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of li2b2-xml Show documentation
Show all versions of li2b2-xml Show documentation
Message structures and code for parsing.
Used by client and server.
package de.sekmi.li2b2.hive;
public class Credentials {
private String user;
private String domain;
private String password;
private boolean isToken;
public Credentials(String domain, String user, String password, boolean isToken){
this.user = user;
this.domain = domain;
this.password = password;
this.isToken = isToken;
}
public String getUser(){
return user;
}
public String getDomain(){
return domain;
}
public boolean isToken(){
return isToken;
}
public String getPassword(){
return password;
}
}