Interface ItemIdentifier
-
- All Known Subinterfaces:
Item
public interface ItemIdentifierBase class for identifying an OAI-PMH record.- Version:
- 3.1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DategetDatestamp()Creation, modification or deletion date.StringgetIdentifier()Returns the OAI-PMH unique identifier.List<ReferenceSet>getSets()Exposes the list of sets (using the set_spec) that contains the item (OAI-PMH record).booleanisDeleted()Checks if the item is deleted or not.
-
-
-
Method Detail
-
getIdentifier
String getIdentifier()
Returns the OAI-PMH unique identifier.- Returns:
- OAI-PMH unique identifier.
-
getDatestamp
Date getDatestamp()
Creation, modification or deletion date.- Returns:
- OAI-PMH record datestamp
-
getSets
List<ReferenceSet> getSets()
Exposes the list of sets (using the set_spec) that contains the item (OAI-PMH record).- Returns:
- List of sets
-
isDeleted
boolean isDeleted()
Checks if the item is deleted or not.- Returns:
- Checks if the item is deleted or not.
-
-