org.verapdf.apps.VeraAppConfig Maven / Gradle / Ivy
/**
* This file is part of VeraPDF Library GUI, a module of the veraPDF project.
* Copyright (c) 2015, veraPDF Consortium
* All rights reserved.
*
* VeraPDF Library GUI is free software: you can redistribute it and/or modify
* it under the terms of either:
*
* The GNU General public license GPLv3+.
* You should have received a copy of the GNU General Public License
* along with VeraPDF Library GUI as the LICENSE.GPL file in the root of the source
* tree. If not, see http://www.gnu.org/licenses/ or
* https://www.gnu.org/licenses/gpl-3.0.en.html.
*
* The Mozilla Public License MPLv2+.
* You should have received a copy of the Mozilla Public License along with
* VeraPDF Library GUI as the LICENSE.MPL file in the root of the source tree.
* If a copy of the MPL was not distributed with this file, you can obtain one at
* http://mozilla.org/MPL/2.0/.
*/
/**
*
*/
package org.verapdf.apps;
import org.verapdf.processor.FormatOption;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* @author Carl Wilson
* carlwilson AT github
*
* @version 0.1
*
* Created 30 Oct 2016:20:58:16
*/
@XmlJavaTypeAdapter(VeraAppConfigImpl.Adapter.class)
public interface VeraAppConfig {
public boolean isOverwriteReport();
public String getFixesFolder();
public String getReportFile();
public String getReportFolder();
public String getPolicyFile();
public String getWikiPath();
public FormatOption getFormat();
public ProcessType getProcessType();
public boolean isVerbose();
public int getMaxFailsDisplayed();
}