summaryrefslogtreecommitdiff
path: root/src/com/github/junrar/rarfile/UnixOwnersHeader.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/github/junrar/rarfile/UnixOwnersHeader.java')
-rw-r--r--src/com/github/junrar/rarfile/UnixOwnersHeader.java93
1 files changed, 0 insertions, 93 deletions
diff --git a/src/com/github/junrar/rarfile/UnixOwnersHeader.java b/src/com/github/junrar/rarfile/UnixOwnersHeader.java
deleted file mode 100644
index 192ba7a..0000000
--- a/src/com/github/junrar/rarfile/UnixOwnersHeader.java
+++ /dev/null
@@ -1,93 +0,0 @@
-package com.github.junrar.rarfile;
-
-import com.github.junrar.io.Raw;
-
-
-public class UnixOwnersHeader
-extends SubBlockHeader
-{
- //private Log //logger = LogFactory.getLog(UnixOwnersHeader.class);
- private int ownerNameSize;
- private int groupNameSize;
- private String owner;
- private String group;
-
- public UnixOwnersHeader(SubBlockHeader sb, byte[] uoHeader) {
- super(sb);
- int pos = 0;
- ownerNameSize = Raw.readShortLittleEndian(uoHeader, pos)&0xFFFF;
- pos+=2;
- groupNameSize = Raw.readShortLittleEndian(uoHeader, pos)&0xFFFF;
- pos+=2;
- if(pos+ownerNameSize<uoHeader.length){
- byte[] ownerBuffer = new byte[ownerNameSize];
- System.arraycopy(uoHeader, pos, ownerBuffer, 0, ownerNameSize);
- owner = new String(ownerBuffer);
- }
- pos+=ownerNameSize;
- if(pos+groupNameSize<uoHeader.length){
- byte[] groupBuffer = new byte[groupNameSize];
- System.arraycopy(uoHeader, pos, groupBuffer, 0, groupNameSize);
- group = new String(groupBuffer);
- }
- }
- /**
- * @return the group
- */
- public String getGroup() {
- return group;
- }
- /**
- * @param group the group to set
- */
- public void setGroup(String group) {
- this.group = group;
- }
- /**
- * @return the groupNameSize
- */
- public int getGroupNameSize() {
- return groupNameSize;
- }
- /**
- * @param groupNameSize the groupNameSize to set
- */
- public void setGroupNameSize(int groupNameSize) {
- this.groupNameSize = groupNameSize;
- }
- /**
- * @return the owner
- */
- public String getOwner() {
- return owner;
- }
- /**
- * @param owner the owner to set
- */
- public void setOwner(String owner) {
- this.owner = owner;
- }
- /**
- * @return the ownerNameSize
- */
- public int getOwnerNameSize() {
- return ownerNameSize;
- }
- /**
- * @param ownerNameSize the ownerNameSize to set
- */
- public void setOwnerNameSize(int ownerNameSize) {
- this.ownerNameSize = ownerNameSize;
- }
-
- /* (non-Javadoc)
- * @see de.innosystec.unrar.rarfile.SubBlockHeader#print()
- */
- public void print(){
- super.print();
- //logger.info("ownerNameSize: "+ownerNameSize);
- //logger.info("owner: "+owner);
- //logger.info("groupNameSize: "+groupNameSize);
- //logger.info("group: "+group);
- }
-}