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

org.glassfish.jaxb.runtime.v2.JAXBContextFactory Maven / Gradle / Ivy

/*
 * Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Distribution License v. 1.0, which is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

package org.glassfish.jaxb.runtime.v2;

import jakarta.xml.bind.JAXBContext;
import jakarta.xml.bind.JAXBException;

import java.util.Map;

/**
 * Creates JAXB context.
 * Context factory supporting JavaSE service loading facilities.
 *
 * Redirects to {@link ContextFactory}, which is not removed due to compatibility reasons.
 */
public class JAXBContextFactory implements jakarta.xml.bind.JAXBContextFactory {


    /**
     * Default constructor.
     */
    public JAXBContextFactory() {
    }

    /**
     * Creates JAXB context.
     *
     * @param classesToBeBound JAXB classes accessed by runtime.
     * @param properties JAXB properties passed to runtime.
     * @return JAXB context.
     * @throws JAXBException on any error.
     */
    @Override
    @SuppressWarnings({"unchecked"})
    public JAXBContext createContext(Class[] classesToBeBound, Map properties) throws JAXBException {
        return ContextFactory.createContext(classesToBeBound, (Map) properties);
    }

    /**
     * Creates JAXB context.
     * @param contextPath path to scan for JAXB classes accessed by runtime.
     * @param classLoader class loader to use.
     * @param properties JAXB properties.
     * @return JAXB context.
     * @throws JAXBException on any error.
     */
    @Override
    @SuppressWarnings({"unchecked"})
    public JAXBContext createContext(String contextPath, ClassLoader classLoader, Map properties) throws JAXBException {
        return ContextFactory.createContext(contextPath, classLoader, (Map) properties);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy