001/**
002 *
003 * Copyright 2017 Florian Schmaus, Paul Schaub
004 *
005 * Licensed under the Apache License, Version 2.0 (the "License");
006 * you may not use this file except in compliance with the License.
007 * You may obtain a copy of the License at
008 *
009 *     http://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the License for the specific language governing permissions and
015 * limitations under the License.
016 */
017package org.jivesoftware.smackx.jingle;
018
019import org.jxmpp.jid.FullJid;
020
021/**
022 * Pair of jid and sessionId.
023 */
024public class FullJidAndSessionId {
025    private final FullJid fullJid;
026    private final String sessionId;
027
028    public FullJidAndSessionId(FullJid fullJid, String sessionId) {
029        this.fullJid = fullJid;
030        this.sessionId = sessionId;
031    }
032
033    public FullJid getFullJid() {
034        return fullJid;
035    }
036
037    public String getSessionId() {
038        return sessionId;
039    }
040
041    @Override
042    public int hashCode() {
043        int hashCode = 31 * fullJid.hashCode();
044        hashCode = 31 * hashCode + sessionId.hashCode();
045        return hashCode;
046    }
047
048    @Override
049    public boolean equals(Object other) {
050        if (!(other instanceof FullJidAndSessionId)) {
051            return false;
052        }
053        FullJidAndSessionId otherFullJidAndSessionId = (FullJidAndSessionId) other;
054        return fullJid.equals(otherFullJidAndSessionId.fullJid)
055                && sessionId.equals(otherFullJidAndSessionId.sessionId);
056    }
057}