alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Axis 2 example source code file (Constants.java)

This example Axis 2 source code file (Constants.java) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Axis 2 tags/keywords

any_element_field_name, automatic, base_64_property_key, binding, databinding_operation_details, databinding_service_details, plain_base_64_property_key, string, string, unwrapped, unwrapped_details, unwrapped_details, xslt_include_databind_supporter_href_key, xslt_include_test_object_href_key

The Axis 2 Constants.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.util;

public interface Constants {

    String BASE_64_PROPERTY_KEY = "base64map";
    String PLAIN_BASE_64_PROPERTY_KEY = "plainbase64map";

    String EXTERNAL_TEMPLATE_PROPERTY_KEY = "externalTemplate";
    String XSLT_INCLUDE_DATABIND_SUPPORTER_HREF_KEY = "databindsupporter";
    String XSLT_INCLUDE_TEST_OBJECT_HREF_KEY = "testObject";
    String UNWRAPPED_KEY = "UnWrapped";
    String UNWRAPPED_DETAILS = "UnWrapped_details";

    String COMPLEX_TYPE = "complexType";
    String ARRAY_TYPE = "arrayType";

    public static final String ANY_ELEMENT_FIELD_NAME = "extraElement";

    /**
     * Property for message receiver operation method handled by databinding code generation. This
     * is an optional parameter for an {@link org.apache.axis2.description.AxisOperation}. If
     * present, the value is the name of a method to be generated by the databinding code generation
     * and called by the message receiver code generation in order to process the OMElement and
     * invoke the service method.
     */
    String DATABINDING_GENERATED_RECEIVER = "databinding-generated-receiver";

    /**
     * Property for interface implementation method handled by databinding code generation. This is
     * an optional parameter for an {@link org.apache.axis2.description.AxisOperation}. If present,
     * the value is a <code>Boolean flag to indicate that the method corresponding to that
     * operation will be generated by the data binding code generation.
     */
    String DATABINDING_GENERATED_IMPLEMENTATION = "databinding-generated-implementation";

    /**
     * Property for details to be passed inside the <databinders> element. This is an optional
     * parameter for an {@link org.apache.axis2.description.AxisOperation}. If present, the value is
     * a DOM element to be appended to the <databinders> content.
     */
    String DATABINDING_OPERATION_DETAILS = "databinding-operation-details";

    /**
     * Property for details to be passed inside the <databinders> element. This is an optional
     * parameter for an {@link org.apache.axis2.description.AxisService}. If present, the value is a
     * DOM element to be appended to the <databinders> content.
     */
    String DATABINDING_SERVICE_DETAILS = "databinding-service-details";


    public interface CodegenStyle {
        final int AUTOMATIC = 0;
        final int INTERFACE = 1;
        static final int BINDING = 2;
    }


}

Other Axis 2 examples (source code examples)

Here is a short list of links related to this Axis 2 Constants.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 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.