1 23 24 package com.sun.ejb.containers.util.cache; 25 26 import com.sun.ejb.containers.EJBContextImpl; 27 28 public class PassivatedSessionInfo { 29 30 public long key; 31 public int lastAccessedAt; 32 public PassivatedSessionInfo next; 33 34 public PassivatedSessionInfo(long key, int lastAccessedAt, 35 PassivatedSessionInfo next) { 36 this.key = key; 37 this.lastAccessedAt = lastAccessedAt; 38 this.next = next; 39 } 40 41 public PassivatedSessionInfo(long key, int lastAccessedAt) { 42 this.key = key; 43 this.lastAccessedAt = lastAccessedAt; 44 } 45 46 } 47 48 | Popular Tags |