swim.system.AuthenticatorAddress Maven / Gradle / Ivy
The newest version!
// Copyright 2015-2024 Nstream, inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package swim.system;
import swim.codec.Debug;
import swim.codec.Format;
import swim.codec.Output;
import swim.util.Murmur3;
public final class AuthenticatorAddress implements CellAddress, Debug {
final String authenticatorName;
public AuthenticatorAddress(String authenticatorName) {
this.authenticatorName = authenticatorName;
}
public String authenticatorName() {
return this.authenticatorName;
}
public AuthenticatorAddress authenticatorName(String authenticatorName) {
return this.copy(authenticatorName);
}
AuthenticatorAddress copy(String authenticatorName) {
return new AuthenticatorAddress(authenticatorName);
}
@Override
public boolean equals(Object other) {
if (this == other) {
return true;
} else if (other instanceof AuthenticatorAddress) {
final AuthenticatorAddress that = (AuthenticatorAddress) other;
return this.authenticatorName.equals(that.authenticatorName);
}
return false;
}
private static int hashSeed;
@Override
public int hashCode() {
if (AuthenticatorAddress.hashSeed == 0) {
AuthenticatorAddress.hashSeed = Murmur3.hash(AuthenticatorAddress.class);
}
return Murmur3.mash(Murmur3.mix(AuthenticatorAddress.hashSeed, this.authenticatorName.hashCode()));
}
@Override
public Output debug(Output output) {
output = output.write("AuthenticatorAddress").write('.').write("create").write('(')
.debug(this.authenticatorName).write(')');
return output;
}
@Override
public String toString() {
return Format.debug(this);
}
public static AuthenticatorAddress create(String authenticatorName) {
return new AuthenticatorAddress(authenticatorName);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy