View Javadoc
1   /*
2    * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
3    * The software in this package is published under the terms of the CPAL v1.0
4    * license, a copy of which has been included with this distribution in the
5    * LICENSE.txt file.
6    */
7   package org.mule.module.cxf.payload;
8   
9   import org.mule.transport.NullPayload;
10  
11  public interface PayloadTestConstants
12  {
13      public static final NullPayload nullPayload = NullPayload.getInstance();
14      public static final Object objectPayload = new Object();
15      public static final String strPayload = "some message";
16      public static final String[] strArrayPayload = new String[]{"some message"};
17      public static final Object[] emptyOjbectArrayPayload = new Object[]{};
18  
19      public static final String strPayloadResult = "Hello " + strPayload;
20      public static final String strArrayPayloadResult = "Hello " + strArrayPayload[0];
21  
22      public static final String greetMeOutEndpointName = "greetMeOutboundEndpoint";
23      public static final String sayHiOutEndpointName = "sayHiOutboundEndpoint";
24  }
25  
26