Interface XMPBasic
-
- All Superinterfaces:
BasicSchema
- All Known Subinterfaces:
InfoDictionary
public interface XMPBasic extends BasicSchema
Current interface represent XMP Basic schema- Author:
- Evgeniy Muravitskiy
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetCreationDate()Return Creation Date entry.StringgetCreator()Return Creator entry.StringgetModificationDate()Return Modification Date entry.voidsetCreationDate(String creationDate)Set Creation Date entry.voidsetCreator(String creatorTool)Set Creator entry.voidsetModificationDate(String modificationDate)Set Modification Date entry.-
Methods inherited from interface org.verapdf.metadata.fixer.schemas.BasicSchema
setNeedToBeUpdated
-
-
-
-
Method Detail
-
getCreator
String getCreator()
Return Creator entry. For information dictionary represented byCreatorentry, in metadata -CreatorToolentry- Returns:
- Creator entry
-
setCreator
void setCreator(String creatorTool)
Set Creator entry. For information dictionary represented byCreatorentry, in metadata -CreatorToolentry- Parameters:
creatorTool- new CreatorTool value
-
getCreationDate
String getCreationDate()
Return Creation Date entry. For information dictionary represented byCreationDateentry, in metadata -CreationDateentry- Returns:
- Creation Date entry
-
setCreationDate
void setCreationDate(String creationDate)
Set Creation Date entry. For information dictionary represented byCreationDateentry, in metadata -CreationDateentry- Parameters:
creationDate- new Creation Date value
-
getModificationDate
String getModificationDate()
Return Modification Date entry. For information dictionary represented byModDateentry, in metadata -ModifyDateentry- Returns:
- Modification Date entry
-
setModificationDate
void setModificationDate(String modificationDate)
Set Modification Date entry. For information dictionary represented byModDateentry, in metadata -ModifyDateentry- Parameters:
modificationDate- new Modification Date value
-
-