com.avaje.ebeaninternal.server.util.ClassPathReader Maven / Gradle / Ivy
package com.avaje.ebeaninternal.server.util;
/**
* Get the paths used to search for entity beans etc.
*
* Typically this will return a URL[] of the classpath.
*
*/
public interface ClassPathReader {
/**
* Return the paths in the classpath to search for entity beans etc.
*
* This will typically return a URL[] or String[] of the entries in the
* class path.
*
*/
Object[] readPath(ClassLoader classLoader);
}