BAEL-20552: Migrate spring-vault module to the com.baeldung package

This commit is contained in:
Krzysztof Woyke
2019-12-27 14:38:30 +01:00
parent 1beda960e8
commit eb4f568a1a
9 changed files with 10 additions and 16 deletions

View File

@@ -0,0 +1,30 @@
package com.baeldung.springvault;
public class Credentials {
private String username;
private String password;
public Credentials() {
}
public Credentials(String username, String password) {
this.username = username;
this.password = password;
}
public String getUsername() {
return username;
}
public String getPassword() {
return password;
}
@Override
public String toString() {
return "Credential [username=" + username + ", password=" + password + "]";
}
}