Author: sebb Date: Mon May 10 10:59:23 2010 New Revision: 942707 URL: http://svn.apache.org/viewvc?rev=942707&view=rev Log: Allow linkName to be updated (needed for Pax headers)
Modified: commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveEntry.java Modified: commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveEntry.java URL: http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveEntry.java?rev=942707&r1=942706&r2=942707&view=diff ============================================================================== --- commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveEntry.java (original) +++ commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveEntry.java Mon May 10 10:59:23 2010 @@ -358,6 +358,13 @@ public class TarArchiveEntry implements } /** + * Set this entry's link name. + */ + public void setLinkName(String link) { + linkName = link; + } + + /** * Get this entry's user id. * * @return This entry's user id.