Skip to content

Commit

Permalink
Readable/persistable credentials (#53)
Browse files Browse the repository at this point in the history
* Add getters for Credentials fields

* Bump version
  • Loading branch information
andrewazores authored Jun 16, 2021
1 parent 94362f3 commit 4cb4bd4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.cryostat</groupId>
<artifactId>cryostat-core</artifactId>
<version>2.2.3</version>
<version>2.3.0</version>
<packaging>jar</packaging>
<name>cryostat-core</name>
<url>http://maven.apache.org</url>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/io/cryostat/core/net/Credentials.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ public Credentials(String username, String password) {
this.password = password;
}

String getUsername() {
public String getUsername() {
return username;
}

String getPassword() {
public String getPassword() {
return password;
}

Expand Down

0 comments on commit 4cb4bd4

Please sign in to comment.