/** * Copyright (c) 2003-2005, www.pdfbox.org * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * 3. Neither the name of pdfbox; nor the names of its * contributors may be used to endorse or promote products derived from this * software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * http://www.pdfbox.org * */ package org.pdfbox.pdmodel; import java.io.IOException; import java.util.Calendar; import org.pdfbox.cos.COSBase; import org.pdfbox.cos.COSDictionary; import org.pdfbox.cos.COSName; import org.pdfbox.pdmodel.common.COSObjectable; /** * This is the document metadata. Each getXXX method will return the entry if * it exists or null if it does not exist. If you pass in null for the setXXX * method then it will clear the value. * * @author Ben Litchfield (ben@benlitchfield.com) * @version $Revision: 1.10 $ */ public class PDDocumentInformation implements COSObjectable { private static final COSName TITLE = COSName.getPDFName( "Title" ); private static final COSName AUTHOR = COSName.getPDFName( "Author" ); private static final COSName SUBJECT = COSName.getPDFName( "Subject" ); private static final COSName KEYWORDS = COSName.getPDFName( "Keywords" ); private static final COSName CREATOR = COSName.getPDFName( "Creator" ); private static final COSName PRODUCER = COSName.getPDFName( "Producer" ); private static final COSName CREATION_DATE = COSName.getPDFName( "CreationDate" ); private static final COSName MODIFICATION_DATE = COSName.getPDFName( "ModDate" ); private static final COSName TRAPPED = COSName.getPDFName( "Trapped" ); private COSDictionary info; /** * Default Constructor. */ public PDDocumentInformation() { info = new COSDictionary(); } /** * Constructor that is used for a preexisting dictionary. * * @param dic The underlying dictionary. */ public PDDocumentInformation( COSDictionary dic ) { info = dic; } /** * This will get the underlying dictionary that this object wraps. * * @return The underlying info dictionary. */ public COSDictionary getDictionary() { return info; } /** * Convert this standard java object to a COS object. * * @return The cos object that matches this Java object. */ public COSBase getCOSObject() { return info; } /** * This will get the title of the document. This will return null if no title exists. * * @return The title of the document. */ public String getTitle() { return info.getString( TITLE ); } /** * This will set the title of the document. * * @param title The new title for the document. */ public void setTitle( String title ) { info.setString( TITLE, title ); } /** * This will get the author of the document. This will return null if no author exists. * * @return The author of the document. */ public String getAuthor() { return info.getString( AUTHOR ); } /** * This will set the author of the document. * * @param author The new author for the document. */ public void setAuthor( String author ) { info.setString( AUTHOR, author ); } /** * This will get the subject of the document. This will return null if no subject exists. * * @return The subject of the document. */ public String getSubject() { return info.getString( SUBJECT ); } /** * This will set the subject of the document. * * @param subject The new subject for the document. */ public void setSubject( String subject ) { info.setString( SUBJECT, subject ); } /** * This will get the keywords of the document. This will return null if no keywords exists. * * @return The keywords of the document. */ public String getKeywords() { return info.getString( KEYWORDS ); } /** * This will set the keywords of the document. * * @param keywords The new keywords for the document. */ public void setKeywords( String keywords ) { info.setString( KEYWORDS, keywords ); } /** * This will get the creator of the document. This will return null if no creator exists. * * @return The creator of the document. */ public String getCreator() { return info.getString( CREATOR ); } /** * This will set the creator of the document. * * @param creator The new creator for the document. */ public void setCreator( String creator ) { info.setString( CREATOR, creator ); } /** * This will get the producer of the document. This will return null if no producer exists. * * @return The producer of the document. */ public String getProducer() { return info.getString( PRODUCER ); } /** * This will set the producer of the document. * * @param producer The new producer for the document. */ public void setProducer( String producer ) { info.setString( PRODUCER, producer ); } /** * This will get the creation date of the document. This will return null if no creation date exists. * * @return The creation date of the document. * * @throws IOException If there is an error creating the date. */ public Calendar getCreationDate() throws IOException { return info.getDate( CREATION_DATE ); } /** * This will set the creation date of the document. * * @param date The new creation date for the document. */ public void setCreationDate( Calendar date ) { info.setDate( CREATION_DATE, date ); } /** * This will get the modification date of the document. This will return null if no modification date exists. * * @return The modification date of the document. * * @throws IOException If there is an error creating the date. */ public Calendar getModificationDate() throws IOException { return info.getDate( MODIFICATION_DATE ); } /** * This will set the modification date of the document. * * @param date The new modification date for the document. */ public void setModificationDate( Calendar date ) { info.setDate( MODIFICATION_DATE, date ); } /** * This will get the trapped value for the document. * This will return null if one is not found. * * @return The trapped value for the document. */ public String getTrapped() { return info.getNameAsString( TRAPPED ); } /** * This will set the trapped of the document. This will be * 'True', 'False', or 'Unknown'. * * @param value The new trapped value for the document. */ public void setTrapped( String value ) { if( value != null && !value.equals( "True" ) && !value.equals( "False" ) && !value.equals( "Unknown" ) ) { throw new RuntimeException( "Valid values for trapped are " + "'True', 'False', or 'Unknown'" ); } info.setName( TRAPPED, value ); } }