Package org.switchyard.internal

Examples of org.switchyard.internal.CompositeContext


        source.getSOAPHeader().addChildElement(LAST_NAME).setValue("Doe");
        return source;
    }

    private Context newSourceContext() {
        CompositeContext source = newContext();
        source.setProperty(FIRST_NAME.toString(), "John");
        source.setProperty(LAST_NAME.toString(), "Doe");
        return source;
    }
View Full Code Here


        SOAPMessage target = SOAPUtil.createMessage(SOAPBinding.SOAP11HTTP_BINDING);
        return target;
    }

    private CompositeContext newContext() {
        CompositeContext source = new CompositeContext();
        source.setContext(Scope.MESSAGE, new DefaultContext(Scope.MESSAGE));
        source.setContext(Scope.EXCHANGE, new DefaultContext());
        return source;
    }
View Full Code Here

   
    /**
     * Create an empty remote message.
     */
    public RemoteMessage() {
        _context = new CompositeContext();
    }
View Full Code Here

TOP

Related Classes of org.switchyard.internal.CompositeContext

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.