OmemoDevice.java

/**
 *
 * Copyright 2017 Paul Schaub
 *
 * 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 org.jivesoftware.smackx.omemo.internal;

import org.jivesoftware.smackx.omemo.util.OmemoConstants;

import org.jxmpp.jid.BareJid;

/**
 * Class that combines a BareJid and a deviceId.
 *
 * @author Paul Schaub
 */
public class OmemoDevice {
    private final BareJid jid;
    private final int deviceId;

    /**
     * Create a new OmemoDevice.
     *
     * @param jid jid of the contact
     * @param deviceId deviceId if the device.
     */
    public OmemoDevice(BareJid jid, int deviceId) {
        this.jid = jid;
        this.deviceId = deviceId;
    }

    /**
     * Return the BareJid of the device owner.
     *
     * @return bare JID of the device owner.
     */
    public BareJid getJid() {
        return this.jid;
    }

    /**
     * Return the OMEMO device Id of the device.
     *
     * @return OMEMO device ID.
     */
    public int getDeviceId() {
        return this.deviceId;
    }

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

    @Override
    public boolean equals(Object other) {
        return other instanceof OmemoDevice &&
                ((OmemoDevice) other).getJid().equals(this.getJid()) &&
                ((OmemoDevice) other).getDeviceId() == this.getDeviceId();
    }

    @Override
    public int hashCode() {
        Integer i;
        i = jid.hashCode() + deviceId;
        return i.hashCode();
    }

    /**
     * Return the name of the PubSub {@link org.jivesoftware.smackx.pubsub.LeafNode} of this device.
     * @return node name.
     */
    public String getBundleNodeName() {
        return OmemoConstants.PEP_NODE_BUNDLE_FROM_DEVICE_ID(getDeviceId());
    }
}