Package net.bytebuddy.agent.builder
Class AgentBuilder.Default.ExecutingTransformer.Java9CapableVmDispatcher
- java.lang.Object
-
- net.bytebuddy.agent.builder.AgentBuilder.Default.ExecutingTransformer.Java9CapableVmDispatcher
-
- All Implemented Interfaces:
java.security.PrivilegedAction<byte[]>
- Enclosing class:
- AgentBuilder.Default.ExecutingTransformer
protected class AgentBuilder.Default.ExecutingTransformer.Java9CapableVmDispatcher extends java.lang.Object implements java.security.PrivilegedAction<byte[]>
A privileged action for transforming a class on a JVM that supports modules.
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
Java9CapableVmDispatcher(java.lang.Object rawModule, java.lang.ClassLoader classLoader, java.lang.String internalTypeName, java.lang.Class<?> classBeingRedefined, java.security.ProtectionDomain protectionDomain, byte[] binaryRepresentation)
Creates a new legacy dispatcher.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object object)
int
hashCode()
byte[]
run()
-
-
-
Constructor Detail
-
Java9CapableVmDispatcher
protected Java9CapableVmDispatcher(java.lang.Object rawModule, java.lang.ClassLoader classLoader, java.lang.String internalTypeName, java.lang.Class<?> classBeingRedefined, java.security.ProtectionDomain protectionDomain, byte[] binaryRepresentation)
Creates a new legacy dispatcher.- Parameters:
rawModule
- The type'sjava.lang.Module
.classLoader
- The type's class loader ornull
if the type is loaded by the bootstrap loader.internalTypeName
- The type's internal name ornull
if no such name exists.classBeingRedefined
- The class being redefined ornull
if no such class exists.protectionDomain
- The type's protection domain.binaryRepresentation
- The type's binary representation.
-
-