All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.whispersystems.libaxolotl.AxolotlAddress Maven / Gradle / Ivy

The newest version!
package org.whispersystems.libaxolotl;

public class AxolotlAddress {

  private final String name;
  private final int    deviceId;

  public AxolotlAddress(String name, int deviceId) {
    this.name     = name;
    this.deviceId = deviceId;
  }

  public String getName() {
    return name;
  }

  public int getDeviceId() {
    return deviceId;
  }

  @Override
  public String toString() {
    return name + ":" + deviceId;
  }

  @Override
  public boolean equals(Object other) {
    if (other == null)                       return false;
    if (!(other instanceof  AxolotlAddress)) return false;

    AxolotlAddress that = (AxolotlAddress)other;
    return this.name.equals(that.name) && this.deviceId == that.deviceId;
  }

  @Override
  public int hashCode() {
    return this.name.hashCode() ^ this.deviceId;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy