Package org.jvnet.glassfish.comms.deployment.backend

Examples of org.jvnet.glassfish.comms.deployment.backend.SessionCase


     */
    protected String getAttributeValue(String name, SipServletRequest req) {
        // Special Cases
        if (name.equals("request.session-case")) {
            try {
                SessionCase sessionCase = ((SipServletRequestImpl) req).getSessionCase();

                return sessionCase.toString();
            } catch (Exception ex) {
                return SessionCase.EXTERNAL.toString();
            }
        }

View Full Code Here

TOP

Related Classes of org.jvnet.glassfish.comms.deployment.backend.SessionCase

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.