1 5 6 package javax.xml.ws.handler; 7 import java.util.Map ; 8 9 21 public interface MessageContext extends Map <String , Object > { 22 23 28 public static final String MESSAGE_OUTBOUND_PROPERTY = 29 "javax.xml.ws.handler.message.outbound"; 30 31 36 public static final String INBOUND_MESSAGE_ATTACHMENTS = 37 "javax.xml.ws.binding.attachments.inbound"; 38 39 44 public static final String OUTBOUND_MESSAGE_ATTACHMENTS = 45 "javax.xml.ws.binding.attachments.outbound"; 46 47 51 public static final String WSDL_DESCRIPTION = 52 "javax.xml.ws.wsdl.description"; 53 54 58 public static final String WSDL_SERVICE = 59 "javax.xml.ws.wsdl.service"; 60 61 65 public static final String WSDL_PORT = 66 "javax.xml.ws.wsdl.port"; 67 68 72 public static final String WSDL_INTERFACE = 73 "javax.xml.ws.wsdl.interface"; 74 75 79 public static final String WSDL_OPERATION = 80 "javax.xml.ws.wsdl.operation"; 81 82 86 public static final String HTTP_RESPONSE_CODE = 87 "javax.xml.ws.http.response.code"; 88 89 93 public static final String HTTP_REQUEST_HEADERS = 94 "javax.xml.ws.http.request.headers"; 95 96 100 public static final String HTTP_RESPONSE_HEADERS = 101 "javax.xml.ws.http.response.headers"; 102 103 107 public static final String HTTP_REQUEST_METHOD = 108 "javax.xml.ws.http.request.method"; 109 110 114 public static final String SERVLET_REQUEST = 115 "javax.xml.ws.servlet.request"; 116 117 121 public static final String SERVLET_RESPONSE = 122 "javax.xml.ws.servlet.response"; 123 124 128 public static final String SERVLET_CONTEXT = 129 "javax.xml.ws.servlet.context"; 130 131 135 public static final String QUERY_STRING = 136 "javax.xml.ws.http.request.querystring"; 137 138 142 public static final String PATH_INFO = 143 "javax.xml.ws.http.request.pathinfo"; 144 145 153 public static final String REFERENCE_PARAMETERS = 154 "javax.xml.ws.reference.parameters"; 155 156 163 public enum Scope {APPLICATION, HANDLER}; 164 165 174 public void setScope(String name, Scope scope); 175 176 184 public Scope getScope(String name); 185 } 186 | Popular Tags |