All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.openjpa.meta.XMLClassMetaData Maven / Gradle / Ivy

/*
 * 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.openjpa.meta;

import java.util.HashMap;

import org.apache.commons.lang.StringUtils;

public class XMLClassMetaData implements XMLMetaData     
{
    private Class _type;
    private int _code = JavaTypes.OBJECT;
    private int _xmltype = XMLTYPE;
    private String _name = null;
    private String _xmlname = null;
    private String _xmlnamespace = null;
    private boolean _isXMLRootElement = false;
    private HashMap _fieldMap = new HashMap();
    
    /**
     * Constructor.
     * 
     * @param type the class that contains XmlType annotation.
     * @name  the persistent field name that maps to xml column
     */
    public XMLClassMetaData(Class type, String name) {
        _type = type;
        _name = name;
    }
    
    /**
     * Constructor.
     * 
     * @param type the class that contains XmlType annotation.
     */
    public XMLClassMetaData(Class type) {
        _type = type;
    }

    public void setName(String name) {
        _name = name;
    }
    
    public String getName() {
        return _name;
    }    
    
    public void setXmlname(String name) {
        _xmlname = name;
    }
    
    public String getXmlname() {
        return _isXMLRootElement ? null : _xmlname;
    }

    public void setXmlnamespace(String name) {
        // avoid JAXB XML bind default name
        if (!StringUtils.equals(defaultName, name))
            _xmlnamespace = name;
    }
    
    public String getXmlnamespace() {
        return _xmlnamespace;
    }

    public void setXmlRootElement(boolean isXMLRootElement) {
        _isXMLRootElement = isXMLRootElement;        
    }

    public boolean isXmlRootElement() {
        return _isXMLRootElement;
    }
    
    public boolean isXmlElement() {
        return false;
    }
    
    public boolean isXmlAttribute() {
        return false;
    }
    
    public XMLMetaData getFieldMapping(String name) {
        return (XMLMetaData) _fieldMap.get(name);
    }
    
    public void setType(Class type) {
        _type = type;
    }
    
    public Class getType() {
        return _type;
    }
    
    public int getTypeCode() {
        return _code;
    }

    public void setXmltype(int type) {
        _xmltype = type;
    }

    public int getXmltype() {
        return _xmltype;
    }
    
    public void addField(String name, XMLMetaData field) {
        _fieldMap.put(name, field);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy