com.helger.pdflayout.IXMPMetadataCustomizer Maven / Gradle / Ivy
                 Go to download
                
        
                    Show more of this group  Show more artifacts with this name
Show all versions of ph-pdf-layout Show documentation
                Show all versions of ph-pdf-layout Show documentation
Library for creating nicely layouted PDF documents based on PDFBox
                
             The newest version!
        
        package com.helger.pdflayout;
import javax.annotation.Nonnull;
import org.apache.xmpbox.XMPMetadata;
/**
 * Callback interface to customize XMP Metadata.
 *
 * @author stmuecke
 * @author Philip Helger
 * @since 7.3.6
 */
@FunctionalInterface
public interface IXMPMetadataCustomizer
{
  /**
   * Customize the provided {@link XMPMetadata} object. It is called as the last
   * action before it gets serialized.
   *
   * @param aXmpMetadata
   *        The object to be customized. Never null.
   */
  void customizeMetadata (@Nonnull XMPMetadata aXmpMetadata);
}
    © 2015 - 2025 Weber Informatics LLC | Privacy Policy