PersistentClientSessionEntity.java
    
    
    
    
    
        Home
            /
model                    /
jpa                    /
src                    /
main                    /
java                    /
org                    /
keycloak                    /
models                    /
jpa                    /
session                    /
                    PersistentClientSessionEntity.java
    
    
            
            package org.keycloak.models.jpa.session;
import java.io.Serializable;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.Id;
import javax.persistence.IdClass;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.NamedQueries;
import javax.persistence.NamedQuery;
import javax.persistence.Table;
/**
 * @author <a href="mailto:mposolda@redhat.com">Marek Posolda</a>
 */
@NamedQueries({
        @NamedQuery(name="deleteClientSessionsByRealm", query="delete from PersistentClientSessionEntity sess where sess.userSessionId in (select u from PersistentUserSessionEntity u where u.realmId=:realmId)"),
        @NamedQuery(name="deleteClientSessionsByClient", query="delete from PersistentClientSessionEntity sess where sess.clientId=:clientId"),
        @NamedQuery(name="deleteClientSessionsByUser", query="delete from PersistentClientSessionEntity sess where sess.userSessionId in (select u from PersistentUserSessionEntity u where u.userId=:userId)"),
        @NamedQuery(name="deleteClientSessionsByUserSession", query="delete from PersistentClientSessionEntity sess where sess.userSessionId=:userSessionId and offline=:offline"),
        @NamedQuery(name="deleteDetachedClientSessions", query="delete from PersistentClientSessionEntity sess where sess.userSessionId NOT IN (select u.userSessionId from PersistentUserSessionEntity u)"),
        @NamedQuery(name="findClientSessionsByUserSession", query="select sess from PersistentClientSessionEntity sess where sess.userSessionId=:userSessionId and offline=:offline"),
        @NamedQuery(name="findClientSessionsByUserSessions", query="select sess from PersistentClientSessionEntity sess where offline=:offline and sess.userSessionId IN (:userSessionIds) order by sess.userSessionId"),
})
@Table(name="OFFLINE_CLIENT_SESSION")
@Entity
@IdClass(PersistentClientSessionEntity.Key.class)
public class PersistentClientSessionEntity {
    @Id
    @Column(name="CLIENT_SESSION_ID", length = 36)
    protected String clientSessionId;
    @Column(name = "USER_SESSION_ID", length = 36)
    protected String userSessionId;
    @Column(name="CLIENT_ID", length = 36)
    protected String clientId;
    @Id
    @Column(name = "OFFLINE")
    protected boolean offline;
    @Column(name="DATA")
    protected String data;
    public String getClientSessionId() {
        return clientSessionId;
    }
    public void setClientSessionId(String clientSessionId) {
        this.clientSessionId = clientSessionId;
    }
    public String getUserSessionId() {
        return userSessionId;
    }
    public void setUserSessionId(String userSessionId) {
        this.userSessionId = userSessionId;
    }
    public String getClientId() {
        return clientId;
    }
    public void setClientId(String clientId) {
        this.clientId = clientId;
    }
    public boolean isOffline() {
        return offline;
    }
    public void setOffline(boolean offline) {
        this.offline = offline;
    }
    public String getData() {
        return data;
    }
    public void setData(String data) {
        this.data = data;
    }
    public static class Key implements Serializable {
        protected String clientSessionId;
        protected boolean offline;
        public Key() {
        }
        public Key(String clientSessionId, boolean offline) {
            this.clientSessionId = clientSessionId;
            this.offline = offline;
        }
        public String getClientSessionId() {
            return clientSessionId;
        }
        public boolean isOffline() {
            return offline;
        }
        @Override
        public boolean equals(Object o) {
            if (this == o) return true;
            if (o == null || getClass() != o.getClass()) return false;
            Key key = (Key) o;
            if (this.clientSessionId != null ? !this.clientSessionId.equals(key.clientSessionId) : key.clientSessionId != null) return false;
            if (offline != key.offline) return false;
            return true;
        }
        @Override
        public int hashCode() {
            int result = this.clientSessionId != null ? this.clientSessionId.hashCode() : 0;
            result = 31 * result + (offline ? 1 : 0);
            return result;
        }
    }
}