1 16 package org.apache.wsdl; 17 18 21 public interface WSDLConstants { 22 25 public static final String WSDL2_0_NAMESPACE = "http://www.w3.org/2004/03/wsdl"; 26 27 30 public static final String WSDL1_1_NAMESPACE = "http://schemas.xmlsoap.org/wsdl/"; 31 32 33 36 public static final String WSDL_MESSAGE_DIRECTION_IN = "in"; 37 38 39 42 public static final String WSDL_MESSAGE_DIRECTION_OUT = "out"; 43 44 48 51 public static final String MEP_URI_IN_ONLY = "http://www.w3.org/2004/08/wsdl/in-only"; 52 53 public static final int MEP_CONSTANT_IN_ONLY = 10; 54 55 58 public static final String MEP_URI_ROBUST_IN_ONLY = "http://www.w3.org/2004/08/wsdl/robust-in-only"; 59 60 public static final int MEP_CONSTANT_ROBUST_IN_ONLY = 11; 61 62 65 public static final String MEP_URI_IN_OUT = "http://www.w3.org/2004/08/wsdl/in-out"; 66 67 public static final int MEP_CONSTANT_IN_OUT = 12; 68 69 72 public static final String MEP_URI_IN_OPTIONAL_OUT = "http://www.w3.org/2004/08/wsdl/in-opt-out"; 73 74 public static final int MEP_CONSTANT_IN_OPTIONAL_OUT = 13; 75 76 79 public static final String MEP_URI_OUT_ONLY = "http://www.w3.org/2004/08/wsdl/out-only"; 80 81 public static final int MEP_CONSTANT_OUT_ONLY = 14; 82 83 86 public static final String MEP_URI_ROBUST_OUT_ONLY = "http://www.w3.org/2004/08/wsdl/robust-out-only"; 87 88 public static final int MEP_CONSTANT_ROBUST_OUT_ONLY = 15; 89 90 93 public static final String MEP_URI_OUT_IN = "http://www.w3.org/2004/08/wsdl/out-in"; 94 95 public static final int MEP_CONSTANT_OUT_IN = 16; 96 97 100 public static final String MEP_URI_OUT_OPTIONAL_IN = "http://www.w3.org/2004/08/wsdl/out-opt-in"; 101 102 public static final int MEP_CONSTANT_OUT_OPTIONAL_IN = 17; 103 104 105 106 public static final int MEP_CONSTANT_INVALID = -1; 107 108 112 117 public static final byte MESSAGE_LABEL_IN = 0; 118 119 public static final String MESSAGE_LABEL_IN_VALUE = "In"; 120 121 127 public static final int MESSAGE_LABEL_OUT = 1; 128 129 public static final String MESSAGE_LABEL_OUT_VALUE = "Out"; 130 131 134 public static final String WSDL_USE_LITERAL="literal"; 135 public static final String WSDL_USE_ENCODED="encoded"; 136 137 138 139 } 140 | Popular Tags |