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

javolution.osgi.internal.XMLOutputFactoryProvider Maven / Gradle / Ivy

/*
 * Javolution - Java(TM) Solution for Real-Time and Embedded Systems
 * Copyright (C) 2012 - Javolution (http://javolution.org/)
 * All rights reserved.
 * 
 * Permission to use, copy, modify, and distribute this software is
 * freely granted, provided that this notice is preserved.
 */
package javolution.osgi.internal;

import javolution.xml.internal.stream.XMLOutputFactoryImpl;
import javolution.xml.stream.XMLOutputFactory;

import org.osgi.framework.Bundle;
import org.osgi.framework.ServiceFactory;
import org.osgi.framework.ServiceRegistration;

/**
 * Holds the service factory providing XMLInputFactory instances.
 */
public final class XMLOutputFactoryProvider implements ServiceFactory {

    @Override
    public XMLOutputFactory getService(Bundle bundle,
            ServiceRegistration registration) {
        return new XMLOutputFactoryImpl();
    }

    @Override
    public void ungetService(Bundle bundle,
            ServiceRegistration registration,
            XMLOutputFactory service) {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy