FileDocCategorySizeDatePackage
PassivatedSessionInfo.javaAPI DocGlassfish v2 API2547Fri May 04 22:33:00 BST 2007com.sun.ejb.containers.util.cache

PassivatedSessionInfo

public class PassivatedSessionInfo extends Object

Fields Summary
public long
key
public int
lastAccessedAt
public PassivatedSessionInfo
next
Constructors Summary
public PassivatedSessionInfo(long key, int lastAccessedAt, PassivatedSessionInfo next)

        this.key = key;
        this.lastAccessedAt = lastAccessedAt;
        this.next = next;
    
public PassivatedSessionInfo(long key, int lastAccessedAt)

        this.key = key;
        this.lastAccessedAt = lastAccessedAt;
    
Methods Summary