01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one
03: * or more contributor license agreements. See the NOTICE file
04: * distributed with this work for additional information
05: * regarding copyright ownership. The ASF licenses this file
06: * to you under the Apache License, Version 2.0 (the
07: * "License"); you may not use this file except in compliance
08: * with the License. You may obtain a copy of the License at
09: *
10: * http://www.apache.org/licenses/LICENSE-2.0
11: *
12: * Unless required by applicable law or agreed to in writing,
13: * software distributed under the License is distributed on an
14: * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15: * KIND, either express or implied. See the License for the
16: * specific language governing permissions and limitations
17: * under the License.
18: */
19:
20: package org.apache.axis2.jaxws.description.builder;
21:
22: import org.apache.axis2.wsdl.WSDLConstants;
23:
24: public class MDQConstants {
25:
26: public static final String WSDL_SERVICE_QNAME = "WSDL_SERVICE_QNAME";
27: public static final String WSDL_PORT = "WSDL_PORT";
28: public static final String WSDL_DEFINITION = WSDLConstants.WSDL_4_J_DEFINITION;
29: public static final String WSDL_LOCATION = "WSDL_LOCATION";
30: public static final String SERVICE_CLASS = "ServiceClass";
31: public static final String WSDL_PORTTYPE_NAME = "WSDL_PORTTYPE_NAME";
32:
33: public static final String OBJECT_CLASS_NAME = "java.lang.Object";
34:
35: public static final String PROVIDER_SOURCE = "javax.xml.ws.Provider<javax.xml.transform.Source>";
36: public static final String PROVIDER_SOAP = "javax.xml.ws.Provider<javax.xml.soap.SOAPMessage>";
37: public static final String PROVIDER_DATASOURCE = "javax.xml.ws.Provider<javax.activation.DataSource>";
38: public static final String PROVIDER_STRING = "javax.xml.ws.Provider<java.lang.String>";
39:
40: public static final String WSDL_FILE_NAME = "WSDL_FILE_NAME";
41: public static final String SCHEMA_DOCS = "SCHEMA_DOCS";
42: public static final String WSDL_COMPOSITE = "WSDL_COMPOSITE";
43:
44: // Java string that represents a class constructor
45: public static final String CONSTRUCTOR_METHOD = "<init>";
46:
47: public static final String RETURN_TYPE_FUTURE = "java.util.concurrent.Future";
48: public static final String RETURN_TYPE_RESPONSE = "javax.xml.ws.Response";
49: }
|