Package net.bytebuddy.dynamic.loading
Class ByteArrayClassLoader.PersistenceHandler.UrlDefinitionAction
- java.lang.Object
-
- net.bytebuddy.dynamic.loading.ByteArrayClassLoader.PersistenceHandler.UrlDefinitionAction
-
- All Implemented Interfaces:
java.security.PrivilegedAction<java.net.URL>
- Enclosing class:
- ByteArrayClassLoader.PersistenceHandler
protected static class ByteArrayClassLoader.PersistenceHandler.UrlDefinitionAction extends java.lang.Object implements java.security.PrivilegedAction<java.net.URL>
An action to define a URL that represents a class file.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description protected static class
ByteArrayClassLoader.PersistenceHandler.UrlDefinitionAction.ByteArrayUrlStreamHandler
A stream handler that returns the given binary representation.
-
Constructor Summary
Constructors Modifier Constructor Description protected
UrlDefinitionAction(java.lang.String typeName, byte[] binaryRepresentation)
Creates a new URL definition action.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.net.URL
run()
-
-
-
Constructor Detail
-
UrlDefinitionAction
protected UrlDefinitionAction(java.lang.String typeName, byte[] binaryRepresentation)
Creates a new URL definition action.- Parameters:
typeName
- The name of the type that this URL represents.binaryRepresentation
- The binary representation of the type's class file.
-
-