All Downloads are FREE. Search and download functionalities are using the official Maven repository.

br.com.jarch.agent.ClassListTransformer Maven / Gradle / Ivy

The newest version!
package br.com.jarch.agent;

import java.lang.instrument.ClassFileTransformer;
import java.security.ProtectionDomain;

public class ClassListTransformer implements ClassFileTransformer {
    @Override
    public byte[] transform(final ClassLoader loader,
                            final String className,
                            final Class classBeingRedefined,
                            final ProtectionDomain protectionDomain,
                            final byte[] classfileBuffer) {
        // null means "use the bytecode without modifications".
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy