Package org.apache.tuscany.core.context

Examples of org.apache.tuscany.core.context.ScopeRuntimeException


    /**
     * Returns and, if necessary, creates a context for the given session key
     */
    private Map<String, Context> getSessionContexts(Object key) throws CoreRuntimeException {
        if (key == null) {
            throw new ScopeRuntimeException("Session key not set in request context");
        }
        Map<String, Context> m = contexts.get(key);
        if (m != null) {
            return m; // already created, return
        }
View Full Code Here

TOP

Related Classes of org.apache.tuscany.core.context.ScopeRuntimeException

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.