com.opensymphony.xwork2.util.finder.ClassLoaderInterface Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xwork Show documentation
Show all versions of xwork Show documentation
XWork is an command-pattern framework that is used to power WebWork
as well as other applications. XWork provides an Inversion of Control
container, a powerful expression language, data type conversion,
validation, and pluggable configuration.
The newest version!
/*
* Copyright (c) 2002-2003 by OpenSymphony
* All rights reserved.
*/
package com.opensymphony.xwork2.util.finder;
import java.net.URL;
import java.util.Enumeration;
import java.io.IOException;
import java.io.InputStream;
/**
* Classes implementing this interface can find resources and load classes, usually delegating to a class
* loader
*/
public interface ClassLoaderInterface {
//key used to add the current ClassLoaderInterface to ActionContext
public final String CLASS_LOADER_INTERFACE = "__current_class_loader_interface";
Class> loadClass(String name) throws ClassNotFoundException;
URL getResource(String name);
public Enumeration getResources(String name) throws IOException;
public InputStream getResourceAsStream(String name) throws IOException;
ClassLoaderInterface getParent();
}