-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
010d2c9
commit d61329a
Showing
22 changed files
with
485 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
src/main/java/org/italiangrid/storm/webdav/fs/attrs/ExtendedAttributes.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package org.italiangrid.storm.webdav.fs.attrs; | ||
|
||
public enum ExtendedAttributes { | ||
|
||
STORM_ADLER32_CHECKSUM_ATTR_NAME("storm.checksum.adler32"), | ||
STORM_PREMIGRATE_ATTR_NAME("storm.premigrate"), | ||
STORM_MIGRATED_ATTR_NAME("storm.migrated"), | ||
STORM_RECALL_IN_PROGRESS_ATTR_NAME("storm.TSMRecT"); | ||
|
||
private final String attrName; | ||
|
||
private ExtendedAttributes(String attrName) { | ||
this.attrName = attrName; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return attrName; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
src/main/java/org/italiangrid/storm/webdav/fs/attrs/FileStatus.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package org.italiangrid.storm.webdav.fs.attrs; | ||
|
||
public enum FileStatus { | ||
|
||
TAPE, TAPE_RECALL_IN_PROGRESS, DISK, DISK_AND_TAPE, UNDEFINED; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.