Package net.bytebuddy.agent
Class ByteBuddyAgent.AttachmentProvider.Accessor.ExternalAttachment
- java.lang.Object
-
- net.bytebuddy.agent.ByteBuddyAgent.AttachmentProvider.Accessor.ExternalAttachment
-
- Enclosing interface:
- ByteBuddyAgent.AttachmentProvider.Accessor
public static class ByteBuddyAgent.AttachmentProvider.Accessor.ExternalAttachment extends Object
Describes an external attachment to a Java virtual machine.
-
-
Constructor Summary
Constructors Constructor Description ExternalAttachment(String virtualMachineType, List<File> classPath)
Creates an external attachment.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<File>
getClassPath()
Returns the class path elements required for loading the supplied virtual machine type.String
getVirtualMachineType()
Returns the fully-qualified binary name of the virtual machine type.
-
-
-
Constructor Detail
-
ExternalAttachment
public ExternalAttachment(String virtualMachineType, List<File> classPath)
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 Detail
-
getVirtualMachineType
public String getVirtualMachineType()
Returns the fully-qualified binary name of the virtual machine type.- Returns:
- The fully-qualified binary name of the virtual machine type.
-
-