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

com.swak.i18n.aggregate.GetResources Maven / Gradle / Ivy

The newest version!

package com.swak.i18n.aggregate;

import java.io.IOException;
import java.net.URL;
import java.security.PrivilegedAction;
import java.util.Collections;
import java.util.Enumeration;

 final class GetResources implements PrivilegedAction> {

    private final String resourceName;
    private final ClassLoader classLoader;

    public static GetResources action(ClassLoader classLoader, String resourceName) {
        return new GetResources( classLoader, resourceName );
    }

    private GetResources(ClassLoader classLoader, String resourceName) {
        this.classLoader = classLoader;
        this.resourceName = resourceName;
    }

    @Override
    public Enumeration run() {
        try {
            return classLoader.getResources( resourceName );
        }
        catch (IOException e) {
            // Collections.emptyEnumeration() would be 1.7
            return Collections.enumeration( Collections.emptyList() );
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy