io.ebean.enhance.common.ClassBytesReader Maven / Gradle / Ivy
package io.ebean.enhance.common;
/**
* Interface for reading class bytes as part of enhancement.
*
* Used to parse inheritance objects when enhancing a given class.
*
*/
public interface ClassBytesReader {
/**
* Return the class bytes for a given class.
*/
byte[] getClassBytes(String className, ClassLoader classLoader);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy