com.adobe.pdfservices.operation.pdfjobs.result.pdfproperties.InfoDict Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pdfservices-sdk Show documentation
Show all versions of pdfservices-sdk Show documentation
Adobe PDF Services SDK allows you to access RESTful APIs to create, convert, and manipulate PDFs within your applications.
Older versions can be found under groupId: com.adobe.documentservices, artifactId: pdftools-sdk
/*
* Copyright 2024 Adobe
* All Rights Reserved.
*
* NOTICE: Adobe permits you to use, modify, and distribute this file in
* accordance with the terms of the Adobe license agreement accompanying
* it. If you have received this file from a source other than Adobe,
* then your use, modification, or distribution of it requires the prior
* written permission of Adobe.
*/
package com.adobe.pdfservices.operation.pdfjobs.result.pdfproperties;
/**
* This class provides document authoring related information, such as creation date, creator etc.
*/
public class InfoDict {
private String creationDate;
private String producer;
private String creator;
private String modDate;
private String author;
private String title;
/**
* Returns a string specifying the date of file creation.
*
* @return String denoting the date of file creation.
*/
public String getCreationDate() {
return creationDate;
}
/**
* Returns a string specifying the authoring tool used to generate the specified PDF file - e.g. "Adobe Acrobat
* 21.5 Image Conversion Plug-in" etc.
*
* @return A String denoting the authoring tool used to generate the specified PDF file.
*/
public String getProducer() {
return producer;
}
/**
* Returns a string specifying the creator tool of the specified PDF file - e.g. "Adobe Acrobat 21.5" etc.
*
* @return A String denoting the creator tool of the specified PDF file.
*/
public String getCreator() {
return creator;
}
/**
* Returns a string specifying the date when the file was last modified.
*
* @return A String denoting the date when the file was last modified.
*/
public String getDateModified() {
return modDate;
}
/**
* Returns the name of the author of the specified PDF file
*
* @return A String denoting the name of the author of the specified PDF file.
*/
public String getAuthor() {
return author;
}
/**
* Returns a string specifying the title of the specified PDF file.
*
* @return A String denoting the title of the specified PDF file.
*/
public String getTitle() {
return title;
}
void setCreationDate(String creationDate) {
this.creationDate = creationDate;
}
void setProducer(String producer) {
this.producer = producer;
}
void setCreator(String creator) {
this.creator = creator;
}
void setModDate(String modDate) {
this.modDate = modDate;
}
void setAuthor(String author) {
this.author = author;
}
void setTitle(String title) {
this.title = title;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy