* Add getter for the app classloader.

This commit is contained in:
hns 2006-02-03 11:45:55 +00:00
parent ad9da0be95
commit f9f99408ab

View file

@ -154,6 +154,14 @@ public class ApplicationBean implements Serializable {
app.addRepository(rep);
}
/**
* Get the app's classloader
* @return the app's classloader
*/
public ClassLoader getClassLoader() {
return app.getClassLoader();
}
/**
*
*