Package net.bytebuddy.agent
Class ByteBuddyAgent.AttachmentProvider.Accessor.ExternalAttachment
java.lang.Object
net.bytebuddy.agent.ByteBuddyAgent.AttachmentProvider.Accessor.ExternalAttachment
- Enclosing interface:
ByteBuddyAgent.AttachmentProvider.Accessor
Describes an external attachment to a Java virtual machine.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe class path elements required for loading the supplied virtual machine type.private final String
The fully-qualified binary name of the virtual machine type. -
Constructor Summary
ConstructorsConstructorDescriptionExternalAttachment
(String virtualMachineType, List<File> classPath) Creates an external attachment. -
Method Summary
Modifier and TypeMethodDescriptionReturns the class path elements required for loading the supplied virtual machine type.Returns the fully-qualified binary name of the virtual machine type.
-
Field Details
-
virtualMachineType
The fully-qualified binary name of the virtual machine type. -
classPath
The class path elements required for loading the supplied virtual machine type.
-
-
Constructor Details
-
ExternalAttachment
Creates an external attachment.- Parameters:
virtualMachineType
- The fully-qualified binary name of the virtual machine type.classPath
- The class path elements required for loading the supplied virtual machine type.
-
-
Method Details
-
getVirtualMachineType
Returns the fully-qualified binary name of the virtual machine type.- Returns:
- The fully-qualified binary name of the virtual machine type.
-
getClassPath
Returns the class path elements required for loading the supplied virtual machine type.- Returns:
- The class path elements required for loading the supplied virtual machine type.
-