1 17 package org.apache.servicemix.jbi.messaging; 18 19 import java.net.URI ; 20 21 26 public class MessageExchangeSupport { 27 30 public static final URI IN_ONLY = URI.create("http://www.w3.org/2004/08/wsdl/in-only"); 31 34 public static final URI IN_OUT = URI.create("http://www.w3.org/2004/08/wsdl/in-out"); 35 38 public static final URI IN_OPTIONAL_OUT = URI.create("http://www.w3.org/2004/08/wsdl/in-opt-out"); 39 42 public static final URI ROBUST_IN_ONLY = URI.create("http://www.w3.org/2004/08/wsdl/robust-in-only"); 43 46 public static final URI OUT_ONLY = URI.create("http://www.w3.org/2004/08/wsdl/out-only"); 47 50 public static final URI OUT_IN = URI.create("http://www.w3.org/2004/08/wsdl/out-in"); 51 54 public static final URI OUT_OPTIONAL_IN = URI.create("http://www.w3.org/2004/08/wsdl/out-opt-in"); 55 58 public static final URI ROBUST_OUT_ONLY = URI.create("http://www.w3.org/2004/08/wsdl/robust-out-only"); 59 } | Popular Tags |