
pro.taskana.rest.models.User Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of taskana-rest-spring-example-common Show documentation
Show all versions of taskana-rest-spring-example-common Show documentation
groups the minimum required configuration for a taskana REST APP
The newest version!
package pro.taskana.rest.models;
/** model for a user. */
public class User {
private String username;
private String password;
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
@Override
public String toString() {
return "User [" + "username= " + this.username + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy