Package org.apache.cocoon.sunshine

Examples of org.apache.cocoon.sunshine.SunShine.createSession()


        SunShine sunShine = null;
        try {
            sunShine = (SunShine)this.manager.lookup(SunShine.ROLE);
            final String action = par.getParameter("action", "create");
            if ( action.equals("create") == true ) {
                sunShine.createSession();
            } else if ( action.equals("terminate") == true ) {
                final String mode = par.getParameter("mode", "immediately");
                if ( mode.equals("immediately") == true) {
                    sunShine.terminateSession(true);
                } else if ( mode.equals("if-unused") == true ) {
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.