Package org.apache.axis2.rpc

Source Code of org.apache.axis2.rpc.RPCParameter$IndexedParamTarget

/*
* 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;

import org.apache.axis2.databinding.DeserializationTarget;
import org.apache.axis2.databinding.Deserializer;
import org.apache.axis2.databinding.SerializationContext;
import org.apache.axis2.databinding.metadata.ElementDesc;
import org.apache.axis2.databinding.utils.Converter;

import java.util.ArrayList;

/**
* RPCParameter
*/
public class RPCParameter extends ElementDesc {
    class ParamTarget implements DeserializationTarget {
        RPCParameter param;

        public ParamTarget(RPCParameter param) {
            this.param = param;
        }

        public void setValue(Object value) throws Exception {
            param.setValue(value);
        }
    }

    class IndexedParamTarget implements DeserializationTarget {
        RPCParameter param;
        int index;

        public IndexedParamTarget(RPCParameter param, int index) {
            this.param = param;
            this.index = index;
        }

        public void setValue(Object value) throws Exception {
            param.setIndexedValue(index, value);
        }
    }

    public static final int MODE_IN    = 0;
    public static final int MODE_OUT   = 1;
    public static final int MODE_INOUT = 2;

    Object value;
    int mode;
    Class destClass;

    public Object getValue() {
        if (destClass != null)
            return Converter.convert(value, destClass);

        return value;
    }

    public void setValue(Object value) {
        this.value = value;
    }

    public int getMode() {
        return mode;
    }

    public void setMode(int mode) {
        this.mode = mode;
    }

    public Class getDestClass() {
        return destClass;
    }

    public void setDestClass(Class destClass) {
        this.destClass = destClass;
    }

    public void serialize(SerializationContext context) throws Exception {
        if (ser == null) {
            // no serializer!
            throw new Exception("No serializer in RPCParameter");
        }
        context.serializeElement(qname, value, ser);
    }

    public Deserializer getDeserializer(int i) {
        if (i > maxOccurs && maxOccurs > -1) {
            // fail
            throw new RuntimeException("Too many elements");
        }

        DeserializationTarget target;
        if (maxOccurs == -1 || maxOccurs > 1) {
            if (value == null) value = new ArrayList();
            target = new IndexedParamTarget(this, i);
        } else {
            target = new ParamTarget(this);
        }

        Deserializer dser = deserializerFactory.getDeserializer();
        dser.setTarget(target);
        return dser;
    }

    public void setIndexedValue(int index, Object value) {
        ArrayList coll = (ArrayList)this.value;
        if (coll.size() == index) {
            coll.add(value);
            return;
        }

        while (index + 1 > coll.size()) {
            coll.add(null);
        }
        coll.set(index, value);
    }
}
TOP

Related Classes of org.apache.axis2.rpc.RPCParameter$IndexedParamTarget

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.