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

org.mule.module.launcher.MulePluginClassLoaderManager Maven / Gradle / Ivy

There is a newer version: 3.9.0
Show newest version
/*
 * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
 * The software in this package is published under the terms of the CPAL v1.0
 * license, a copy of which has been included with this distribution in the
 * LICENSE.txt file.
 */
package org.mule.module.launcher;

import java.util.Collections;
import java.util.LinkedList;
import java.util.List;

public class MulePluginClassLoaderManager implements PluginClassLoaderManager
{

    private final List classLoaders = new LinkedList();

    @Override
    public void addPluginClassLoader(ClassLoader classLoader)
    {
        synchronized (classLoaders)
        {
            classLoaders.add(classLoader);
        }
    }

    @Override
    public List getPluginClassLoaders()
    {
        synchronized (classLoaders)
        {
            return Collections.unmodifiableList(classLoaders);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy