com.nervousync.commons.zip.models.header.FileHeader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nervousync-utils Show documentation
Show all versions of nervousync-utils Show documentation
Java Utils collections, development by Nervousync Studio (NSYC)
The newest version!
/*
* Licensed to the Nervousync Studio (NSYC) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.nervousync.commons.zip.models.header;
import java.util.List;
import com.nervousync.commons.zip.models.AESExtraDataRecord;
import com.nervousync.commons.zip.models.ExtraDataRecord;
import com.nervousync.commons.zip.models.Zip64ExtendInfo;
/**
* @author Steven Wee [email protected]
* @version $Revision: 1.0 $ $Date: Nov 29, 2017 2:30:48 PM $
*/
public class FileHeader {
private int signature;
private int extractNeeded;
private byte[] generalPurposeFlag;
private int compressionMethod;
private int lastModFileTime;
private long crc32;
private byte[] crcBuffer;
private long compressedSize;
private long originalSize;
private String entryPath;
private int fileNameLength;
private int extraFieldLength;
private char[] password;
private List extraDataRecords;
private Zip64ExtendInfo zip64ExtendInfo;
private AESExtraDataRecord aesExtraDataRecord;
private boolean fileNameUTF8Encoded;
private boolean isEncrypted;
private boolean dataDescriptorExists;
private int encryptionMethod;
/**
* @return the signature
*/
public int getSignature() {
return signature;
}
/**
* @param signature the signature to set
*/
public void setSignature(int signature) {
this.signature = signature;
}
/**
* @return the extractNeeded
*/
public int getExtractNeeded() {
return extractNeeded;
}
/**
* @param extractNeeded the extractNeeded to set
*/
public void setExtractNeeded(int extractNeeded) {
this.extractNeeded = extractNeeded;
}
/**
* @return the generalPurposeFlag
*/
public byte[] getGeneralPurposeFlag() {
return generalPurposeFlag;
}
/**
* @param generalPurposeFlag the generalPurposeFlag to set
*/
public void setGeneralPurposeFlag(byte[] generalPurposeFlag) {
this.generalPurposeFlag = generalPurposeFlag;
}
/**
* @return the compressionMethod
*/
public int getCompressionMethod() {
return compressionMethod;
}
/**
* @param compressionMethod the compressionMethod to set
*/
public void setCompressionMethod(int compressionMethod) {
this.compressionMethod = compressionMethod;
}
/**
* @return the lastModFileTime
*/
public int getLastModFileTime() {
return lastModFileTime;
}
/**
* @param lastModFileTime the lastModFileTime to set
*/
public void setLastModFileTime(int lastModFileTime) {
this.lastModFileTime = lastModFileTime;
}
/**
* @return the crc32
*/
public long getCrc32() {
return crc32;
}
/**
* @param crc32 the crc32 to set
*/
public void setCrc32(long crc32) {
this.crc32 = crc32;
}
/**
* @return the crcBuffer
*/
public byte[] getCrcBuffer() {
return crcBuffer;
}
/**
* @param crcBuffer the crcBuffer to set
*/
public void setCrcBuffer(byte[] crcBuffer) {
this.crcBuffer = crcBuffer;
}
/**
* @return the compressedSize
*/
public long getCompressedSize() {
return compressedSize;
}
/**
* @param compressedSize the compressedSize to set
*/
public void setCompressedSize(long compressedSize) {
this.compressedSize = compressedSize;
}
/**
* @return the originalSize
*/
public long getOriginalSize() {
return originalSize;
}
/**
* @param originalSize the originalSize to set
*/
public void setOriginalSize(long originalSize) {
this.originalSize = originalSize;
}
/**
* @return the fileNameLength
*/
public int getFileNameLength() {
return fileNameLength;
}
/**
* @param fileNameLength the fileNameLength to set
*/
public void setFileNameLength(int fileNameLength) {
this.fileNameLength = fileNameLength;
}
/**
* @return the extraFieldLength
*/
public int getExtraFieldLength() {
return extraFieldLength;
}
/**
* @param extraFieldLength the extraFieldLength to set
*/
public void setExtraFieldLength(int extraFieldLength) {
this.extraFieldLength = extraFieldLength;
}
/**
* @return the entryPath
*/
public String getEntryPath() {
return entryPath;
}
/**
* @param entryPath the entryPath to set
*/
public void setEntryPath(String entryPath) {
this.entryPath = entryPath;
}
/**
* @return the isEncrypted
*/
public boolean isEncrypted() {
return isEncrypted;
}
/**
* @param isEncrypted the isEncrypted to set
*/
public void setEncrypted(boolean isEncrypted) {
this.isEncrypted = isEncrypted;
}
/**
* @return the password
*/
public char[] getPassword() {
return password;
}
/**
* @param password the password to set
*/
public void setPassword(char[] password) {
this.password = password;
}
/**
* @return the dataDescriptorExists
*/
public boolean isDataDescriptorExists() {
return dataDescriptorExists;
}
/**
* @param dataDescriptorExists the dataDescriptorExists to set
*/
public void setDataDescriptorExists(boolean dataDescriptorExists) {
this.dataDescriptorExists = dataDescriptorExists;
}
/**
* @return the zip64ExtendInfo
*/
public Zip64ExtendInfo getZip64ExtendInfo() {
return zip64ExtendInfo;
}
/**
* @param zip64ExtendInfo the zip64ExtendInfo to set
*/
public void setZip64ExtendInfo(Zip64ExtendInfo zip64ExtendInfo) {
this.zip64ExtendInfo = zip64ExtendInfo;
}
/**
* @return the aesExtraDataRecord
*/
public AESExtraDataRecord getAesExtraDataRecord() {
return aesExtraDataRecord;
}
/**
* @param aesExtraDataRecord the aesExtraDataRecord to set
*/
public void setAesExtraDataRecord(AESExtraDataRecord aesExtraDataRecord) {
this.aesExtraDataRecord = aesExtraDataRecord;
}
/**
* @return the extraDataRecords
*/
public List getExtraDataRecords() {
return extraDataRecords;
}
/**
* @param extraDataRecords the extraDataRecords to set
*/
public void setExtraDataRecords(List extraDataRecords) {
this.extraDataRecords = extraDataRecords;
}
/**
* @return the fileNameUTF8Encoded
*/
public boolean isFileNameUTF8Encoded() {
return fileNameUTF8Encoded;
}
/**
* @param fileNameUTF8Encoded the fileNameUTF8Encoded to set
*/
public void setFileNameUTF8Encoded(boolean fileNameUTF8Encoded) {
this.fileNameUTF8Encoded = fileNameUTF8Encoded;
}
/**
* @return the encryptionMethod
*/
public int getEncryptionMethod() {
return encryptionMethod;
}
/**
* @param encryptionMethod the encryptionMethod to set
*/
public void setEncryptionMethod(int encryptionMethod) {
this.encryptionMethod = encryptionMethod;
}
}