Package org.glassfish.api.deployment
Class ResourceEntry
- java.lang.Object
-
- org.glassfish.api.deployment.ResourceEntry
-
public class ResourceEntry extends Object
Resource entry.- Version:
- $Revision: 1.1.2.1 $ $Date: 2007/08/17 15:46:27 $
- Author:
- Remy Maucherat
-
-
Field Summary
Fields Modifier and Type Field Description byte[]binaryContentBinary content of the resource.Certificate[]certificatesCertificates (if the resource was loaded from a JAR).URLcodeBaseURL of the codebase from where the object was loaded.ConcurrentMap<String,GeneratedResourceEntry>generatedResourcesMap of generated linked classes e.g Generated EJB interface or Weld proxieslonglastModifiedThe "last modified" time of the origin file at the time this class was loaded, in milliseconds since the epoch.Class<?>loadedClassLoaded class.ManifestmanifestManifest (if the resource was loaded from a JAR).URLsourceURL source from where the object was loaded.
-
Constructor Summary
Constructors Constructor Description ResourceEntry()
-
-
-
Field Detail
-
lastModified
public long lastModified
The "last modified" time of the origin file at the time this class was loaded, in milliseconds since the epoch.
-
binaryContent
public byte[] binaryContent
Binary content of the resource.
-
loadedClass
public volatile Class<?> loadedClass
Loaded class.
-
source
public URL source
URL source from where the object was loaded.
-
codeBase
public URL codeBase
URL of the codebase from where the object was loaded.
-
manifest
public Manifest manifest
Manifest (if the resource was loaded from a JAR).
-
certificates
public Certificate[] certificates
Certificates (if the resource was loaded from a JAR).
-
generatedResources
public ConcurrentMap<String,GeneratedResourceEntry> generatedResources
Map of generated linked classes e.g Generated EJB interface or Weld proxies
-
-