Package org.artifactory.resource
Interface RepoResourceInfo
-
- All Superinterfaces:
Info,java.io.Serializable
- All Known Subinterfaces:
FileInfo,MetadataInfo
public interface RepoResourceInfo extends Info
Date: 8/1/11 Time: 7:09 PM- Author:
- Fred Simon
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.util.Set<ChecksumInfo>getChecksums()Deprecated.Should use the container getterChecksumsInfogetChecksumsInfo()longgetLastModified()java.lang.StringgetMd5()java.lang.StringgetName()RepoPathgetRepoPath()java.lang.StringgetSha1()java.lang.StringgetSha2()longgetSize()
-
-
-
Method Detail
-
getRepoPath
RepoPath getRepoPath()
-
getName
java.lang.String getName()
-
getLastModified
long getLastModified()
-
getSize
long getSize()
-
getSha1
java.lang.String getSha1()
- Returns:
- The actual sha1 checksum of the file. Null if not determined yet.
-
getSha2
java.lang.String getSha2()
- Returns:
- The actual sha256 checksum of the file. Null if not determined yet.
-
getMd5
java.lang.String getMd5()
- Returns:
- The actual md5 checksum of the file. Null if not determined yet.
-
getChecksumsInfo
ChecksumsInfo getChecksumsInfo()
-
getChecksums
@Deprecated java.util.Set<ChecksumInfo> getChecksums()
Deprecated.Should use the container getter- Returns:
- Set of checksum infos
-
-