View Javadoc

1   /*
2    * Created on May 13, 2004
3    *
4    */
5   package org.neo.swarm.services.classloader;
6   
7   
8   /***
9    * Defines the API that other containers use to remotely locate classes
10   *  @author navery
11   */
12  public interface RemoteClassLoader {
13  	public Class loadApplicationClass(String name) throws ClassNotFoundException;
14  }