Package org.artifactory.fs
Interface ItemInfo
-
- All Superinterfaces:
Comparable<ItemInfo>
,Info
,Serializable
- All Known Subinterfaces:
FileInfo
,FolderInfo
public interface ItemInfo extends Info, Comparable<ItemInfo>
Date: 8/1/11 Time: 7:13 PM- Author:
- Fred Simon
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getCreated()
String
getCreatedBy()
long
getId()
long
getLastModified()
long
getLastUpdated()
String
getModifiedBy()
String
getName()
String
getRelPath()
String
getRepoKey()
RepoPath
getRepoPath()
boolean
isFolder()
boolean
isIdentical(ItemInfo info)
-
Methods inherited from interface java.lang.Comparable
compareTo
-
-
-
-
Method Detail
-
getId
long getId()
- Returns:
- The storage system id of this item. Negative if the item still has no id.
-
getRepoPath
RepoPath getRepoPath()
-
isFolder
boolean isFolder()
-
getName
String getName()
- Returns:
- The file/folder name of this item
- See Also:
RepoPath.getName()
-
getRepoKey
String getRepoKey()
-
getRelPath
String getRelPath()
-
getCreated
long getCreated()
-
getLastModified
long getLastModified()
-
getModifiedBy
String getModifiedBy()
-
getCreatedBy
String getCreatedBy()
-
getLastUpdated
long getLastUpdated()
-
isIdentical
boolean isIdentical(ItemInfo info)
-
-