Package org.apache.axis2.rpc.client

Source Code of org.apache.axis2.rpc.client.StubSupporter

/*
* Copyright 2004,2005 The Apache Software Foundation.
*
* Licensed 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.rpc.client;

import org.apache.ws.commons.om.OMElement;
import org.apache.ws.commons.om.OMFactory;
import org.apache.ws.commons.om.OMNamespace;

public class StubSupporter {

    public static OMElement createRPCMappedElement(
            String elementName,
            OMNamespace ns,
            Object value,
            OMFactory fac) {
        OMElement returnElement = fac.createOMElement(elementName, ns);
        Class inputParamClass = value.getClass();

        if (inputParamClass.equals(String.class)) {
            returnElement.addChild(
                    fac.createText(returnElement, value.toString()));
        } else if (inputParamClass.equals(Integer.class)) {
            returnElement.addChild(
                    fac.createText(
                            returnElement,
                            String.valueOf(((Integer) value).intValue())));
        } else if (inputParamClass.equals(Float.class)) {
            returnElement.addChild(
                    fac.createText(
                            returnElement,
                            String.valueOf(((Float) value).floatValue())));
        } else if (inputParamClass.equals(Double.class)) {
            returnElement.addChild(
                    fac.createText(
                            returnElement,
                            String.valueOf(((Double) value).doubleValue())));
            //todo this seems to be a long list... need to complete this
        } else if (inputParamClass.equals(OMElement.class)) {
            returnElement.addChild((OMElement) value);
        } else {
            returnElement.addChild(
                    fac.createText(returnElement, value.toString()));
        }
        return returnElement;
    }

    public static Object getRPCMappedElementValue(
            OMElement elt,
            Class outputTypeClass) {
        Object outputObj = null;
        if (outputTypeClass.equals(String.class)) {
            outputObj = elt.getText();
        } else if (outputTypeClass.equals(Integer.class)) {
            outputObj = new Integer(elt.getText());
        } else if (outputTypeClass.equals(Float.class)) {
            outputObj = new Float(elt.getText());
        } else if (outputTypeClass.equals(Double.class)) {
            outputObj = new Double(elt.getText());

            //todo this seems to be a long list... need to complete this

        } else if (outputTypeClass.equals(OMElement.class)) {
            outputObj = elt;
        } else {
            outputObj = elt.toString();
        }

        return outputObj;
    }

}
TOP

Related Classes of org.apache.axis2.rpc.client.StubSupporter

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.