|
Axis 2 example source code file (CTypeInfo.java)
The Axis 2 CTypeInfo.java source code/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.axis2.wsdl.codegen.emitter; import org.apache.axis2.namespace.Constants; import javax.xml.namespace.QName; import java.util.HashMap; import java.util.Map; /** * The java type map. uses a static map for caching Most code from Axis 1 Codebase* Most code * JavaTypeMap */ public class CTypeInfo extends Constants { public static Map getTypeMap() { return CTypeInfo.typeMap; } private static Map typeMap = new HashMap(); static { // If SOAP 1.1 over the wire, map wrapper classes to XSD primitives. CTypeInfo.addTypemapping(XSD_STRING, "axis2_char_t*"); // The XSD Primitives are mapped to java primitives. CTypeInfo.addTypemapping(XSD_BOOLEAN, "axis2_bool_t"); CTypeInfo.addTypemapping(XSD_DOUBLE, "double"); CTypeInfo.addTypemapping(XSD_FLOAT, "float"); CTypeInfo.addTypemapping(XSD_INT, "int"); CTypeInfo.addTypemapping(XSD_INTEGER, "int"); CTypeInfo.addTypemapping(XSD_LONG, "long"); CTypeInfo.addTypemapping(XSD_SHORT, "short"); CTypeInfo.addTypemapping(XSD_BYTE, "axis2_byte_t"); CTypeInfo.addTypemapping(XSD_ANY, "axiom_node_t*"); CTypeInfo.addTypemapping(XSD_DECIMAL, "double"); //anytype is mapped to the OMElement instead of the java.lang.Object CTypeInfo.addTypemapping(XSD_ANYTYPE, "axiom_node_t*"); //Qname maps to jax rpc QName class CTypeInfo.addTypemapping(XSD_QNAME, "axutil_qname_t*"); //xsd Date is mapped to the java.util.date! CTypeInfo.addTypemapping(XSD_DATE, "axutil_date_time_t*"); // Mapping for xsd:time. Map to Axis type Time CTypeInfo.addTypemapping(XSD_TIME, "axutil_date_time_t*"); CTypeInfo.addTypemapping(XSD_DATETIME, "axutil_date_time_t*"); //as for the base 64 encoded binary stuff we map it to a javax. // activation.Datahandler object CTypeInfo.addTypemapping(XSD_BASE64, "axutil_base64_binary_t*"); CTypeInfo.addTypemapping(XSD_HEXBIN, "void*"); // These are the g* types (gYearMonth, etc) which map to Axis types CTypeInfo.addTypemapping(XSD_YEARMONTH, "int"); CTypeInfo.addTypemapping(XSD_YEAR, "int"); CTypeInfo.addTypemapping(XSD_MONTH, "int"); CTypeInfo.addTypemapping(XSD_DAY, "int"); CTypeInfo.addTypemapping(XSD_MONTHDAY, "int"); // xsd:token CTypeInfo.addTypemapping(XSD_TOKEN, "axis2_char_t*"); // a xsd:normalizedString CTypeInfo.addTypemapping(XSD_NORMALIZEDSTRING, "axis2_char_t*"); // a xsd:unsignedLong CTypeInfo.addTypemapping(XSD_UNSIGNEDLONG, "unsigned long"); // a xsd:unsignedInt CTypeInfo.addTypemapping(XSD_UNSIGNEDINT, "unsigned int"); // a xsd:unsignedShort CTypeInfo.addTypemapping(XSD_UNSIGNEDSHORT, "unsigned short"); // a xsd:unsignedByte CTypeInfo.addTypemapping(XSD_UNSIGNEDBYTE, "unsigned char"); // a xsd:nonNegativeInteger CTypeInfo.addTypemapping(XSD_NONNEGATIVEINTEGER, "unsigned int"); // a xsd:negativeInteger CTypeInfo.addTypemapping(XSD_NEGATIVEINTEGER, "int"); // a xsd:positiveInteger CTypeInfo.addTypemapping(XSD_POSITIVEINTEGER, "unsigned int"); // a xsd:nonPositiveInteger CTypeInfo.addTypemapping(XSD_NONPOSITIVEINTEGER, "int"); // a xsd:Name CTypeInfo.addTypemapping(XSD_NAME, "axiom_node_t*"); // a xsd:NCName CTypeInfo.addTypemapping(XSD_NCNAME, "axiom_node_t*"); // a xsd:ID CTypeInfo.addTypemapping(XSD_ID, "axiom_node_t*"); // a xml:lang // addTypemapping(XML_LANG,Language.class.getName()); // a xsd:language CTypeInfo.addTypemapping(XSD_LANGUAGE, "axis2_char_t*"); // a xsd:NmToken CTypeInfo.addTypemapping(XSD_NMTOKEN, "axiom_node_t*"); // a xsd:NmTokens CTypeInfo.addTypemapping(XSD_NMTOKENS, "axiom_node_t*"); // a xsd:NOTATION CTypeInfo.addTypemapping(XSD_NOTATION, "axiom_node_t*"); // a xsd:XSD_ENTITY CTypeInfo.addTypemapping(XSD_ENTITY, "axiom_node_t*"); // a xsd:XSD_ENTITIES CTypeInfo.addTypemapping(XSD_ENTITIES, "axiom_node_t*"); // a xsd:XSD_IDREF CTypeInfo.addTypemapping(XSD_IDREF, "axiom_node_t*"); // a xsd:XSD_XSD_IDREFS CTypeInfo.addTypemapping(XSD_IDREFS, "axiom_node_t*"); // a xsd:Duration CTypeInfo.addTypemapping(XSD_DURATION, "axutil_duration_t*"); // a xsd:anyURI CTypeInfo.addTypemapping(XSD_ANYURI, "axutil_uri_t*"); } private static void addTypemapping(QName name, String str) { CTypeInfo.typeMap.put(name, str); } } Other Axis 2 examples (source code examples)Here is a short list of links related to this Axis 2 CTypeInfo.java source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.