Package org.apache.catalina.session

Examples of org.apache.catalina.session.SessionLock


        // m_DialogSet is null not valid for confirmed dialogs
        m_IsValid = in.readBoolean();
        isInitial = in.readBoolean();
        m_SessionCounter = new AtomicInteger(in.readInt());
        validLock = new Object();
        sessionLock = new SessionLock();
        isConfirmed = true;
    }   
View Full Code Here


        // care of reading the serialization stream of a released product.
        isValid = new AtomicBoolean(in.readBoolean());
        invalidateWhenReady = in.readBoolean();
        readyToInvalidate = in.readBoolean();
        ssLock = new Object();
        sessionLock = new SessionLock();
    }
View Full Code Here

TOP

Related Classes of org.apache.catalina.session.SessionLock

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.