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

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

There is a newer version: 7.0.0.Beta1
Show newest version
/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or .
 */
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