Package org.apache.jackrabbit.server

Examples of org.apache.jackrabbit.server.SessionProvider.releaseSession()


     * Releases the given session using the provider from which it was acquired.
     */
    public synchronized void releaseSession(Session session) {
        SessionProvider provider = sessions.remove(session);
        if (provider != null) {
            provider.releaseSession(session);
        }
    }

}
View Full Code Here


                }
                return s;
            }

            public void releaseSession(Session session) {
                original.releaseSession(EventUtil.unwrapSession(session));
            }
        };
    }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.