|
Java EE 5 SDK | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ClassTransformer
A persistence provider supplies an instance of this
interface to the PersistenceUnitInfo.addTransformer
method. The supplied transformer instance will get
called to transform entity class files when they are
loaded or redefined. The transformation occurs before
the class is defined by the JVM.
Method Summary | |
---|---|
byte[] |
transform(ClassLoader loader,
String className,
Class<?> classBeingRedefined,
ProtectionDomain protectionDomain,
byte[] classfileBuffer)
Invoked when a class is being loaded or redefined. |
Method Detail |
---|
byte[] transform(ClassLoader loader, String className, Class<?> classBeingRedefined, ProtectionDomain protectionDomain, byte[] classfileBuffer) throws IllegalClassFormatException
loader
- The defining loader of the class to be
transformed, may be null if the bootstrap loaderclassName
- The name of the class in the internal form
of fully qualified class and interface namesclassBeingRedefined
- If this is a redefine, the
class being redefined, otherwise nullprotectionDomain
- The protection domain of the
class being defined or redefinedclassfileBuffer
- The input byte buffer in class
file format - must not be modified
IllegalClassFormatException
- If the input does
not represent a well-formed class file
|
Java EE 5 SDK | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Copyright 2006 Sun Microsystems, Inc. All rights reserved.