com.msl.pdfier.openpdf.gen.commons.Constants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pdfier-gen-flying-saucer-openpdf Show documentation
Show all versions of pdfier-gen-flying-saucer-openpdf Show documentation
PDFA Generator based on Flying saucer with OpenPDF
The newest version!
package com.msl.pdfier.openpdf.gen.commons;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;
public class Constants {
public static final String FONT_DIR = "pdf/fonts/";
public static final String IMAGES_DIR = "pdf/images/";
public static final String CSS_FILES = "pdf/flysaa-pdf.css";
// list of HTML elements that will be retained in the final output:
public static final Set HTML_ELEMENTS_TO_STRIP = new HashSet(Arrays.asList(new String[] {}));
}