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

org.hibernate.testing.boot.ClassLoaderAccessTestingImpl Maven / Gradle / Ivy

/*
 * SPDX-License-Identifier: LGPL-2.1-or-later
 * Copyright Red Hat Inc. and Hibernate Authors
 */
package org.hibernate.testing.boot;

import java.net.URL;

import org.hibernate.boot.registry.classloading.spi.ClassLoadingException;
import org.hibernate.boot.spi.ClassLoaderAccess;

/**
 * @author Steve Ebersole
 */
public class ClassLoaderAccessTestingImpl implements ClassLoaderAccess {
	/**
	 * Singleton access
	 */
	public static final ClassLoaderAccessTestingImpl INSTANCE = new ClassLoaderAccessTestingImpl();

	@Override
	@SuppressWarnings("unchecked")
	public  Class classForName(String name) {
		try {
			return (Class) getClass().getClassLoader().loadClass( name );
		}
		catch (ClassNotFoundException e) {
			throw new ClassLoadingException( "Could not load class by name : " + name, e );
		}
	}

	@Override
	public URL locateResource(String resourceName) {
		return getClass().getClassLoader().getResource( resourceName );
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy