org.apache.geronimo.deployment.util
Class UnpackedJarEntry

java.lang.Object
  extended by java.util.zip.ZipEntry
      extended by java.util.jar.JarEntry
          extended by org.apache.geronimo.deployment.util.UnpackedJarEntry
All Implemented Interfaces:
Cloneable

public class UnpackedJarEntry
extends JarEntry


Field Summary
static int CENATT
           
static int CENATX
           
static int CENCOM
           
static int CENCRC
           
static int CENDSK
           
static int CENEXT
           
static int CENFLG
           
static int CENHDR
           
static int CENHOW
           
static int CENLEN
           
static int CENNAM
           
static int CENOFF
           
static long CENSIG
           
static int CENSIZ
           
static int CENTIM
           
static int CENVEM
           
static int CENVER
           
static int ENDCOM
           
static int ENDHDR
           
static int ENDOFF
           
static long ENDSIG
           
static int ENDSIZ
           
static int ENDSUB
           
static int ENDTOT
           
static int EXTCRC
           
static int EXTHDR
           
static int EXTLEN
           
static long EXTSIG
           
static int EXTSIZ
           
static int LOCCRC
           
static int LOCEXT
           
static int LOCFLG
           
static int LOCHDR
           
static int LOCHOW
           
static int LOCLEN
           
static int LOCNAM
           
static long LOCSIG
           
static int LOCSIZ
           
static int LOCTIM
           
static int LOCVER
           
 
Fields inherited from class java.util.zip.ZipEntry
DEFLATED, STORED
 
Constructor Summary
UnpackedJarEntry(String name, File file, Manifest manifest)
           
 
Method Summary
 Object clone()
           
 Attributes getAttributes()
           
 Certificate[] getCertificates()
          Always return null.
 String getComment()
          Always returns null.
 long getCompressedSize()
          An unpacked jar is not compressed, so this method returns getSize().
 long getCrc()
           
 byte[] getExtra()
          Always returns null.
 File getFile()
           
 int getMethod()
           
 long getSize()
           
 long getTime()
           
 boolean isDirectory()
           
 void setComment(String comment)
          An unpacked jar is read only, so this method always throws an UnsupportedOperationException.
 void setCompressedSize(long compressedSize)
          An unpacked jar is read only, so this method always throws an UnsupportedOperationException.
 void setCrc(long crc)
          An unpacked jar is read only, so this method always throws an UnsupportedOperationException.
 void setExtra(byte[] extra)
          An unpacked jar is read only, so this method always throws an UnsupportedOperationException.
 void setMethod(int method)
          An unpacked jar is read only, so this method always throws an UnsupportedOperationException.
 void setSize(long size)
          An unpacked jar is read only, so this method always throws an UnsupportedOperationException.
 void setTime(long time)
          An unpacked jar is read only, so this method always throws an UnsupportedOperationException.
 
Methods inherited from class java.util.jar.JarEntry
getCodeSigners
 
Methods inherited from class java.util.zip.ZipEntry
getName, hashCode, toString
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

LOCSIG

public static final long LOCSIG
See Also:
Constant Field Values

EXTSIG

public static final long EXTSIG
See Also:
Constant Field Values

CENSIG

public static final long CENSIG
See Also:
Constant Field Values

ENDSIG

public static final long ENDSIG
See Also:
Constant Field Values

LOCHDR

public static final int LOCHDR
See Also:
Constant Field Values

EXTHDR

public static final int EXTHDR
See Also:
Constant Field Values

CENHDR

public static final int CENHDR
See Also:
Constant Field Values

ENDHDR

public static final int ENDHDR
See Also:
Constant Field Values

LOCVER

public static final int LOCVER
See Also:
Constant Field Values

LOCFLG

public static final int LOCFLG
See Also:
Constant Field Values

LOCHOW

public static final int LOCHOW
See Also:
Constant Field Values

LOCTIM

public static final int LOCTIM
See Also:
Constant Field Values

LOCCRC

public static final int LOCCRC
See Also:
Constant Field Values

LOCSIZ

public static final int LOCSIZ
See Also:
Constant Field Values

LOCLEN

public static final int LOCLEN
See Also:
Constant Field Values

LOCNAM

public static final int LOCNAM
See Also:
Constant Field Values

LOCEXT

public static final int LOCEXT
See Also:
Constant Field Values

EXTCRC

public static final int EXTCRC
See Also:
Constant Field Values

EXTSIZ

public static final int EXTSIZ
See Also:
Constant Field Values

EXTLEN

public static final int EXTLEN
See Also:
Constant Field Values

CENVEM

public static final int CENVEM
See Also:
Constant Field Values

CENVER

public static final int CENVER
See Also:
Constant Field Values

CENFLG

public static final int CENFLG
See Also:
Constant Field Values

CENHOW

public static final int CENHOW
See Also:
Constant Field Values

CENTIM

public static final int CENTIM
See Also:
Constant Field Values

CENCRC

public static final int CENCRC
See Also:
Constant Field Values

CENSIZ

public static final int CENSIZ
See Also:
Constant Field Values

CENLEN

public static final int CENLEN
See Also:
Constant Field Values

CENNAM

public static final int CENNAM
See Also:
Constant Field Values

CENEXT

public static final int CENEXT
See Also:
Constant Field Values

CENCOM

public static final int CENCOM
See Also:
Constant Field Values

CENDSK

public static final int CENDSK
See Also:
Constant Field Values

CENATT

public static final int CENATT
See Also:
Constant Field Values

CENATX

public static final int CENATX
See Also:
Constant Field Values

CENOFF

public static final int CENOFF
See Also:
Constant Field Values

ENDSUB

public static final int ENDSUB
See Also:
Constant Field Values

ENDTOT

public static final int ENDTOT
See Also:
Constant Field Values

ENDSIZ

public static final int ENDSIZ
See Also:
Constant Field Values

ENDOFF

public static final int ENDOFF
See Also:
Constant Field Values

ENDCOM

public static final int ENDCOM
See Also:
Constant Field Values
Constructor Detail

UnpackedJarEntry

public UnpackedJarEntry(String name,
                        File file,
                        Manifest manifest)
Method Detail

getFile

public File getFile()

getAttributes

public Attributes getAttributes()
                         throws IOException
Overrides:
getAttributes in class JarEntry
Throws:
IOException

getCertificates

public Certificate[] getCertificates()
Always return null. This could be implementd by verifing the signatures in the manifest file against the actual file, but we don't need this for Geronimo.

Overrides:
getCertificates in class JarEntry
Returns:
null

setTime

public void setTime(long time)
             throws UnsupportedOperationException
An unpacked jar is read only, so this method always throws an UnsupportedOperationException.

Overrides:
setTime in class ZipEntry
Parameters:
time - ignored
Throws:
UnsupportedOperationException - always

getTime

public long getTime()
Overrides:
getTime in class ZipEntry

setSize

public void setSize(long size)
             throws UnsupportedOperationException
An unpacked jar is read only, so this method always throws an UnsupportedOperationException.

Overrides:
setSize in class ZipEntry
Parameters:
size - ignored
Throws:
UnsupportedOperationException - always

getSize

public long getSize()
Overrides:
getSize in class ZipEntry

getCompressedSize

public long getCompressedSize()
An unpacked jar is not compressed, so this method returns getSize().

Overrides:
getCompressedSize in class ZipEntry
Returns:
getSize()

setCompressedSize

public void setCompressedSize(long compressedSize)
An unpacked jar is read only, so this method always throws an UnsupportedOperationException.

Overrides:
setCompressedSize in class ZipEntry
Parameters:
compressedSize - ignored
Throws:
UnsupportedOperationException - always

getCrc

public long getCrc()
Overrides:
getCrc in class ZipEntry

setCrc

public void setCrc(long crc)
An unpacked jar is read only, so this method always throws an UnsupportedOperationException.

Overrides:
setCrc in class ZipEntry
Parameters:
crc - ignored
Throws:
UnsupportedOperationException - always

getMethod

public int getMethod()
Overrides:
getMethod in class ZipEntry

setMethod

public void setMethod(int method)
An unpacked jar is read only, so this method always throws an UnsupportedOperationException.

Overrides:
setMethod in class ZipEntry
Parameters:
method - ignored
Throws:
UnsupportedOperationException - always

getExtra

public byte[] getExtra()
Always returns null.

Overrides:
getExtra in class ZipEntry
Returns:
null

setExtra

public void setExtra(byte[] extra)
An unpacked jar is read only, so this method always throws an UnsupportedOperationException.

Overrides:
setExtra in class ZipEntry
Parameters:
extra - ignored
Throws:
UnsupportedOperationException - always

getComment

public String getComment()
Always returns null.

Overrides:
getComment in class ZipEntry
Returns:
null

setComment

public void setComment(String comment)
An unpacked jar is read only, so this method always throws an UnsupportedOperationException.

Overrides:
setComment in class ZipEntry
Parameters:
comment - ignored
Throws:
UnsupportedOperationException - always

isDirectory

public boolean isDirectory()
Overrides:
isDirectory in class ZipEntry

clone

public Object clone()
Overrides:
clone in class ZipEntry


Copyright © 2003-2007 Apache Software Foundation. All Rights Reserved.