Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* 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.jaxws.wrapper.impl;
import org.apache.axis2.jaxws.i18n.Messages;
import org.apache.axis2.jaxws.utility.PropertyDescriptorPlus;
import org.apache.axis2.jaxws.utility.XMLRootElementUtil;
import org.apache.axis2.jaxws.wrapper.JAXBWrapperTool;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* The JAXBWrapper tool is used to create a JAXB Object from a series of child objects (wrap) or get
* the child objects from a JAXB Object (unwrap)
*/
public class JAXBWrapperToolImpl implements JAXBWrapperTool {
private static final Log log = LogFactory.getLog(JAXBWrapperTool.class);
/**
* unwrap Returns the list of child objects of the jaxb object
*
* @param jaxbObject that represents the type
* @param childNames list of xml child names as String
* @param pdMap PropertyDescriptor map for this jaxbObject
* @return list of Objects in the same order as the element names.
*/
public Object[] unWrap(Object jaxbObject,
List childNames,
Map pdMap) throws JAXBWrapperException {
if (jaxbObject == null) {
throw new JAXBWrapperException(Messages.getMessage("JAXBWrapperErr1"));
}
if (childNames == null) {
throw new JAXBWrapperException(Messages.getMessage("JAXBWrapperErr2"));
}
// Get the object that will have the property descriptors (i.e. the object representing the complexType)
Object jaxbComplexTypeObj = jaxbObject;
if (log.isDebugEnabled()) {
log.debug("Invoking unWrap() method with jaxb object:" +
jaxbComplexTypeObj.getClass().getName());
log.debug("The input child xmlnames are: " + toString(childNames));
}
// Check the PropertyDescriptorPlus map if debug is enabled.
// The method makes sure that each child name has a matching jaxb property
if (log.isDebugEnabled()) {
checkPropertyDescriptorMap(jaxbComplexTypeObj.getClass(), childNames, pdMap);
}
// Get the corresponsing objects from the jaxb bean
ArrayList