mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
20 lines
455 B
Java
20 lines
455 B
Java
package com.avaje.ebeaninternal.server.util;
|
|
|
|
/**
|
|
* Get the paths used to search for entity beans etc.
|
|
* <p>
|
|
* Typically this will return a URL[] of the classpath.
|
|
* </p>
|
|
*/
|
|
public interface ClassPathReader {
|
|
|
|
/**
|
|
* Return the paths in the classpath to search for entity beans etc.
|
|
* <p>
|
|
* This will typically return a URL[] or String[] of the entries in the
|
|
* class path.
|
|
* </p>
|
|
*/
|
|
public Object[] readPath(ClassLoader classLoader);
|
|
}
|