org.whispersystems.signalservice.api.push.SignalServiceAddress Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of signal-service-java Show documentation
Show all versions of signal-service-java Show documentation
Signal Service communication library for Java
/**
* Copyright (C) 2014-2016 Open Whisper Systems
*
* Licensed according to the LICENSE file in this repository.
*/
package org.whispersystems.signalservice.api.push;
import org.whispersystems.libsignal.util.guava.Optional;
/**
* A class representing a message destination or origin.
*/
public class SignalServiceAddress {
public static final int DEFAULT_DEVICE_ID = 1;
private final String e164number;
private final Optional relay;
/**
* Construct a PushAddress.
*
* @param e164number The Signal Service username of this destination (eg e164 representation of a phone number).
* @param relay The Signal SErvicefederated server this user is registered with (if not your own server).
*/
public SignalServiceAddress(String e164number, Optional relay) {
this.e164number = e164number;
this.relay = relay;
}
public SignalServiceAddress(String e164number) {
this(e164number, Optional.absent());
}
public String getNumber() {
return e164number;
}
public Optional getRelay() {
return relay;
}
@Override
public boolean equals(Object other) {
if (other == null || !(other instanceof SignalServiceAddress)) return false;
SignalServiceAddress that = (SignalServiceAddress)other;
return equals(this.e164number, that.e164number) &&
equals(this.relay, that.relay);
}
@Override
public int hashCode() {
int hashCode = 0;
if (this.e164number != null) hashCode ^= this.e164number.hashCode();
if (this.relay.isPresent()) hashCode ^= this.relay.get().hashCode();
return hashCode;
}
private boolean equals(String one, String two) {
if (one == null) return two == null;
return one.equals(two);
}
private boolean equals(Optional one, Optional two) {
if (one.isPresent()) return two.isPresent() && one.get().equals(two.get());
else return !two.isPresent();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy