Package org.apache.jackrabbit.spi
Interface ItemInfo
- 
- All Known Subinterfaces:
 NodeInfo,PropertyInfo
- All Known Implementing Classes:
 ItemInfoImpl,NodeInfoImpl,PropertyInfoImpl
public interface ItemInfo 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleandenotesNode()Returns true if thisItemInfodenotes a node, false otherwise.ItemIdgetId()PathgetPath()Returns thePathof the item represented by thisItemInfo. 
 - 
 
- 
- 
Method Detail
- 
getId
ItemId getId()
- Returns:
 - identifier for the item that is based on this info object. the id can either be an absolute path or a uniqueID (+ relative path).
 - See Also:
 RepositoryService.getNodeInfo(SessionInfo, NodeId)
 
- 
denotesNode
boolean denotesNode()
Returns true if thisItemInfodenotes a node, false otherwise.- Returns:
 - true if this 
ItemInfodenotes a node, false otherwise. 
 
- 
getPath
Path getPath()
Returns thePathof the item represented by thisItemInfo.- Returns:
 - the 
Pathof the item represented by this item info. 
 
 - 
 
 -