/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * Copyright (c) 2010, Red Hat Inc. or third-party contributors as
 * indicated by the @author tags or express copyright attribution
 * statements applied by the authors.  All third-party contributions are
 * distributed under license by Red Hat Inc.
 *
 * This copyrighted material is made available to anyone wishing to use, modify,
 * copy, or redistribute it subject to the terms and conditions of the GNU
 * Lesser General Public License, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
 * for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this distribution; if not, write to:
 * Free Software Foundation, Inc.
 * 51 Franklin Street, Fifth Floor
 * Boston, MA  02110-1301  USA
 */
package org.hibernate.boot.registry.classloading.spi;

import java.io.InputStream;
import java.net.URL;
import java.util.LinkedHashSet;
import java.util.List;

import org.hibernate.service.Service;
import org.hibernate.service.spi.Stoppable;

A service for interacting with class loaders.
Author:Steve Ebersole
/** * A service for interacting with class loaders. * * @author Steve Ebersole */
public interface ClassLoaderService extends Service, Stoppable {
Locate a class by name.
Params:
  • className – The name of the class to locate
Type parameters:
  • <T> – The returned class type.
Throws:
Returns:The class reference
/** * Locate a class by name. * * @param className The name of the class to locate * @param <T> The returned class type. * * @return The class reference * * @throws ClassLoadingException Indicates the class could not be found */
public <T> Class<T> classForName(String className);
Locate a resource by name (classpath lookup).
Params:
  • name – The resource name.
Returns:The located URL; may return null to indicate the resource was not found
/** * Locate a resource by name (classpath lookup). * * @param name The resource name. * * @return The located URL; may return {@code null} to indicate the resource was not found */
public URL locateResource(String name);
Locate a resource by name (classpath lookup) and gets its stream.
Params:
  • name – The resource name.
Returns:The stream of the located resource; may return null to indicate the resource was not found
/** * Locate a resource by name (classpath lookup) and gets its stream. * * @param name The resource name. * * @return The stream of the located resource; may return {@code null} to indicate the resource was not found */
public InputStream locateResourceStream(String name);
Locate a series of resource by name (classpath lookup).
Params:
  • name – The resource name.
Returns:The list of URL matching; may return null to indicate the resource was not found
/** * Locate a series of resource by name (classpath lookup). * * @param name The resource name. * * @return The list of URL matching; may return {@code null} to indicate the resource was not found */
public List<URL> locateResources(String name);
Discovers and instantiates implementations of the named service contract.

NOTE : the terms service here is used differently than Service. Instead here we are talking about services as defined by ServiceLoader.
Params:
  • serviceContract – The java type defining the service contract
Type parameters:
  • <S> – The type of the service contract
Returns:The ordered set of discovered services.
/** * Discovers and instantiates implementations of the named service contract. * <p/> * NOTE : the terms service here is used differently than {@link Service}. Instead here we are talking about * services as defined by {@link java.util.ServiceLoader}. * * @param serviceContract The java type defining the service contract * @param <S> The type of the service contract * * @return The ordered set of discovered services. */
public <S> LinkedHashSet<S> loadJavaServices(Class<S> serviceContract); }