summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorValerij Fredriksen <freva@users.noreply.github.com>2022-04-26 17:37:56 +0200
committerGitHub <noreply@github.com>2022-04-26 17:37:56 +0200
commit798ffbff122695ba016773a31eedbc566800095b (patch)
tree242a15f50277bead36dfe78a4f30381ba35f0127
parentf0d08caea0f409966e8e3024427c7a606acce052 (diff)
parentfdd08f08076afe1eeb1cabd0e221c8cacb8a63c1 (diff)
Merge pull request #22287 from vespa-engine/hakonhall/gcp-registry-credentials
Remove registry address from RegistryCredentials
-rw-r--r--node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/container/RegistryCredentials.java17
1 files changed, 5 insertions, 12 deletions
diff --git a/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/container/RegistryCredentials.java b/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/container/RegistryCredentials.java
index 1ac61cd6c1f..29934e3d1aa 100644
--- a/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/container/RegistryCredentials.java
+++ b/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/container/RegistryCredentials.java
@@ -10,16 +10,14 @@ import java.util.Objects;
*/
public class RegistryCredentials {
- public static final RegistryCredentials none = new RegistryCredentials("", "", "");
+ public static final RegistryCredentials none = new RegistryCredentials("", "");
private final String username;
private final String password;
- private final String registryAddress;
- public RegistryCredentials(String username, String password, String registryAddress) {
+ public RegistryCredentials(String username, String password) {
this.username = Objects.requireNonNull(username);
this.password = Objects.requireNonNull(password);
- this.registryAddress = Objects.requireNonNull(registryAddress);
}
public String username() {
@@ -30,28 +28,23 @@ public class RegistryCredentials {
return password;
}
- public String registryAddress() {
- return registryAddress;
- }
-
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
RegistryCredentials that = (RegistryCredentials) o;
return username.equals(that.username) &&
- password.equals(that.password) &&
- registryAddress.equals(that.registryAddress);
+ password.equals(that.password);
}
@Override
public int hashCode() {
- return Objects.hash(username, password, registryAddress);
+ return Objects.hash(username, password);
}
@Override
public String toString() {
- return "registry credentials for " + registryAddress + " [username=" + username + ",password=" + password + "]";
+ return "registry credentials [username=" + username + ",password=<hidden>]";
}
}