Package org.xipki.apppackage
Class ZipEntryInfo
- java.lang.Object
-
- org.xipki.apppackage.ZipEntryInfo
-
public class ZipEntryInfo extends Object
-
-
Constructor Summary
Constructors Constructor Description ZipEntryInfo()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ZipEntryInfodecode(CborDecoder decoder)voidencode(CborEncoder encoder)StringgetComment()byte[]getExtra()longgetLastModified()StringgetName()StringgetSha256()intgetSize()voidsetComment(String comment)voidsetExtra(byte[] extra)voidsetLastModified(long lastModified)voidsetName(String name)voidsetSha256(String sha256)voidsetSize(int size)
-
-
-
Method Detail
-
getLastModified
public long getLastModified()
-
setLastModified
public void setLastModified(long lastModified)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getSize
public int getSize()
-
setSize
public void setSize(int size)
-
getComment
public String getComment()
-
setComment
public void setComment(String comment)
-
getExtra
public byte[] getExtra()
-
setExtra
public void setExtra(byte[] extra)
-
getSha256
public String getSha256()
-
setSha256
public void setSha256(String sha256)
-
encode
public void encode(CborEncoder encoder) throws IOException
- Throws:
IOException
-
decode
public static ZipEntryInfo decode(CborDecoder decoder) throws IOException
- Throws:
IOException
-
-