mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
17 lines
400 B
Java
17 lines
400 B
Java
package com.avaje.ebeaninternal.server.util;
|
|
|
|
/**
|
|
* Defines interface for finding classes via a class path search.
|
|
*/
|
|
public interface ClassPathSearchMatcher {
|
|
|
|
/**
|
|
* Return true if the class matches the specific search.
|
|
* <p>
|
|
* Note that the location in terms of jars and packages is noted and can be
|
|
* used to make future searches faster.
|
|
* </p>
|
|
*/
|
|
boolean isMatch(Class<?> cls);
|
|
}
|