package org.wso2.carbon.databridge.core.internal.authentication.session; import org.wso2.carbon.databridge.commons.Credentials; /** * Copyright (c) WSO2 Inc. (http://www.wso2.org) All Rights Reserved. * <p/> * 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 * <p/> * http://www.apache.org/licenses/LICENSE-2.0 * <p/> * 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. */ public class SessionBean { private Credentials credentials; private String sessionId; public SessionBean(String sessionId) { this.sessionId = sessionId; } public SessionBean(String sessionId, Credentials credentials) { this.credentials = credentials; this.sessionId = sessionId; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } SessionBean that = (SessionBean) o; if (sessionId != null ? !sessionId.equals(that.sessionId) : that.sessionId != null) { return false; } return true; } @Override public int hashCode() { return sessionId != null ? sessionId.hashCode() : 0; } public Credentials getCredentials() { return credentials; } public void setCredentials(Credentials credentials) { this.credentials = credentials; } public String getSessionId() { return sessionId; } public void setSessionId(String sessionId) { this.sessionId = sessionId; } }