Package org.external

Examples of org.external.ExternalItem


    @Test
    public void testMixinJson() throws Exception
    {
        MuleClient muleClient = new MuleClient(muleContext);

        ExternalItem payload = new ExternalItem();

        payload.setItemNumber("1234");
        payload.setUnwantedValue("notWanted");

        MuleMessage result = muleClient.send("vm://json-marshalling-mixin.in", payload, null);
        assertThat(result, is(notNullValue()));
        assertThat(result.getPayload(), is(notNullValue()));
        assertThat(result.getPayload(), is(instanceOf(ExternalItem.class)));
View Full Code Here

TOP

Related Classes of org.external.ExternalItem

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.