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

org.springframework.oxm.config.Jaxb1MarshallerBeanDefinitionParser Maven / Gradle / Ivy

There is a newer version: 1.5.10
Show newest version
/*
 * Copyright (c) 2007, Your Corporation. All Rights Reserved.
 */

package org.springframework.oxm.config;

import org.springframework.beans.factory.xml.AbstractSimpleBeanDefinitionParser;
import org.springframework.oxm.jaxb.Jaxb1Marshaller;
import org.w3c.dom.Element;

/**
 * Parser for the <oxm:jaxb1-marshaller/> element.
 *
 * @author Arjen Poutsma
 * @since 1.5.0
 */
class Jaxb1MarshallerBeanDefinitionParser extends AbstractSimpleBeanDefinitionParser {

    public static final String JAXB1_MARSHALLER_CLASS_NAME = "org.springframework.oxm.jaxb.Jaxb1Marshaller";

    protected String getBeanClassName(Element element) {
        return JAXB1_MARSHALLER_CLASS_NAME;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy