All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jsonschema2pojo.maven.Jsonschema2PojoMojo Maven / Gradle / Ivy

There is a newer version: 1.2.2
Show newest version
/**
 * Copyright © 2010-2017 Nokia
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.jsonschema2pojo.maven;

import static org.apache.commons.lang3.ArrayUtils.isEmpty;
import static org.apache.commons.lang3.StringUtils.*;

import java.io.File;
import java.io.FileFilter;
import java.io.IOException;
import java.net.URL;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;

import org.apache.maven.artifact.DependencyResolutionRequiredException;
import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.project.MavenProject;
import org.jsonschema2pojo.AllFileFilter;
import org.jsonschema2pojo.AnnotationStyle;
import org.jsonschema2pojo.Annotator;
import org.jsonschema2pojo.AnnotatorFactory;
import org.jsonschema2pojo.GenerationConfig;
import org.jsonschema2pojo.InclusionLevel;
import org.jsonschema2pojo.Jsonschema2Pojo;
import org.jsonschema2pojo.Language;
import org.jsonschema2pojo.NoopAnnotator;
import org.jsonschema2pojo.SourceSortOrder;
import org.jsonschema2pojo.SourceType;
import org.jsonschema2pojo.rules.RuleFactory;
import org.jsonschema2pojo.util.URLUtil;

/**
 * When invoked, this goal reads one or more
 * JSON Schema documents and generates DTO
 * style Java classes for data binding.
 *
 * @goal generate
 * @phase generate-sources
 * @requiresDependencyResolution compile
 * @threadSafe
 * @see Mojo
 *      API Specification
 */
public class Jsonschema2PojoMojo extends AbstractMojo implements GenerationConfig {

    /**
     * Target directory for generated Java source files.
     *
     * @parameter expression="${jsonschema2pojo.outputDirectory}"
     *            default-value="${project.build.directory}/java-gen"
     * @since 0.1.0
     */
    private File outputDirectory;

    /**
     * Location of the JSON Schema file(s). Note: this may refer to a single
     * file or a directory of files.
     *
     * @parameter expression="${jsonschema2pojo.sourceDirectory}"
     * @since 0.1.0
     */
    private String sourceDirectory;

    /**
     * An array of locations of the JSON Schema file(s). Note: each item may
     * refer to a single file or a directory of files.
     *
     * @parameter expression="${jsonschema2pojo.sourcePaths}"
     * @since 0.3.1
     */
    private String[] sourcePaths;

    /**
     * Package name used for generated Java classes (for types where a fully
     * qualified name has not been supplied in the schema using the 'javaType'
     * property).
     *
     * @parameter expression="${jsonschema2pojo.targetPackage}"
     * @since 0.1.0
     */
    private String targetPackage = "";

    /**
     * Whether to generate builder-style methods of the form
     * withXxx(value) (that return this), alongside
     * the standard, void-return setters.
     *
     * @parameter expression="${jsonschema2pojo.generateBuilders}"
     *            default-value="false"
     * @since 0.1.2
     */
    private boolean generateBuilders = false;

    /**
     * Whether to use primitives (long, double,
     * boolean) instead of wrapper types where possible when
     * generating bean properties (has the side-effect of making those
     * properties non-null).
     *
     * @parameter expression="${jsonschema2pojo.usePrimitives}"
     *            default-value="false"
     * @since 0.2.0
     */
    private boolean usePrimitives = false;

    /**
     * Add the output directory to the project as a source root, so that the
     * generated java types are compiled and included in the project artifact.
     *
     * @parameter expression="${jsonschema2pojo.addCompileSourceRoot}"
     *            default-value="true"
     * @since 0.1.9
     */
    private boolean addCompileSourceRoot = true;

    /**
     * Skip plugin execution (don't read/validate any schema files, don't
     * generate any java types).
     *
     * @parameter expression="${jsonschema2pojo.skip}" default-value="false"
     * @since 0.2.1
     */
    private boolean skip = false;

    /**
     * The characters that should be considered as word delimiters when creating
     * Java Bean property names from JSON property names. If blank or not set,
     * JSON properties will be considered to contain a single word when creating
     * Java Bean property names.
     *
     * @parameter expression="${jsonschema2pojo.propertyWordDelimiters}"
     *            default-value="- _"
     * @since 0.2.2
     */
    private String propertyWordDelimiters = "- _";

    /**
     * Whether to use the java type long (or Long)
     * instead of int (or Integer) when representing
     * the JSON Schema type 'integer'.
     *
     * @parameter expression="${jsonschema2pojo.useLongIntegers}"
     *            default-value="false"
     * @since 0.2.2
     */
    private boolean useLongIntegers = false;

    /**
     * Whether to use the java type {@link java.math.BigInteger} instead of
     * int (or {@link java.lang.Integer}) when representing the
     * JSON Schema type 'integer'. Note that this configuration overrides
     * {@link #isUseLongIntegers()}.
     *
     * @parameter expression="${jsonschema2pojo.useBigIntegers}"
     *            default-value="false"
     * @since 0.4.25
     */
    private boolean useBigIntegers = false;

    /**
     * Whether to use the java type double (or Double)
     * instead of float (or Float) when representing
     * the JSON Schema type 'number'.
     *
     * @parameter expression="${jsonschema2pojo.useDoubleNumbers}"
     *            default-value="true"
     * @since 0.4.0
     */
    private boolean useDoubleNumbers = true;

    /**
     * Whether to use the java type {@link java.math.BigDecimal} instead of
     * float (or {@link java.lang.Float}) when representing the
     * JSON Schema type 'number'. Note that this configuration overrides
     * {@link #isUseDoubleNumbers()}.
     *
     * @parameter expression="${jsonschema2pojo.useBigDecimals}"
     *            default-value="false"
     * @since 0.4.22
     */
    private boolean useBigDecimals = false;

    /**
     * Whether to include hashCode and equals methods
     * in generated Java types.
     *
     * @parameter expression="${jsonschema2pojo.includeHashcodeAndEquals}"
     *            default-value="true"
     * @since 0.3.1
     */
    private boolean includeHashcodeAndEquals = true;

    /**
     * Whether to include a toString method in generated Java
     * types.
     *
     * @parameter expression="${jsonschema2pojo.includeToString}"
     *            default-value="true"
     * @since 0.3.1
     */
    private boolean includeToString = true;
    
    /**
     * The fields to be excluded from toString generation
     *
     * @parameter expression="${jsonschema2pojo.toStringExcludes}"
     *            default-value=""
     * @since 0.4.35
     */
    private String[] toStringExcludes = new String[] {};

    /**
     * The style of annotations to use in the generated Java types.
     * 

* Supported values: *

    *
  • jackson2 (apply annotations from the * Jackson * 2.x library)
  • *
  • jackson1 (apply annotations from the * Jackson 1.x library)
  • *
  • gson (apply annotations from the * gson library)
  • *
  • moshi1 (apply annotations from the * moshi 1.x library)
  • *
  • none (apply no annotations at all)
  • *
* * @parameter expression="${jsonschema2pojo.annotationStyle}" * default-value="jackson2" * @since 0.3.1 */ private String annotationStyle = "jackson2"; /** * The Level of inclusion to set in the generated Java types for Jackson1 * and Jackson2 serializers. *

* Supported values *

    *
  • ALWAYS
  • *
  • NON_ABSENT
  • *
  • NON_DEFAULT
  • *
  • NON_EMPTY
  • *
  • NON_NULL
  • *
  • USE_DEFAULTS
  • *
*

* * @parameter expression="${jsonschema2pojo.inclusionLevel}" * default-value="NON_NULL" */ private String inclusionLevel = "NON_NULL"; /** * A fully qualified class name, referring to a custom annotator class that * implements org.jsonschema2pojo.Annotator and will be used in * addition to the one chosen by annotationStyle. *

* If you want to use the custom annotator alone, set * annotationStyle to none. * * @parameter expression="${jsonschema2pojo.customAnnotator}" * default-value="org.jsonschema2pojo.NoopAnnotator" * @since 0.3.6 */ private String customAnnotator = NoopAnnotator.class.getName(); /** * A fully qualified class name, referring to an class that extends * org.jsonschema2pojo.rules.RuleFactory and will be used to * create instances of Rules used for code generation. * * @parameter expression="${jsonschema2pojo.customRuleFactory}" * default-value="org.jsonschema2pojo.rules.RuleFactory" * @since 0.4.5 */ private String customRuleFactory = RuleFactory.class.getName(); /** * Whether to include * JSR-303/349 annotations * (for schema rules like minimum, maximum, etc) in generated Java types. *

* Schema rules and the annotation they produce: *

    *
  • maximum = {@literal @DecimalMax} *
  • minimum = {@literal @DecimalMin} *
  • minItems,maxItems = {@literal @Size} *
  • minLength,maxLength = {@literal @Size} *
  • pattern = {@literal @Pattern} *
  • required = {@literal @NotNull} *
* Any Java fields which are an object or array of objects will be annotated * with {@literal @Valid} to support validation of an entire document tree. * * @parameter expression="${jsonschema2pojo.includeJsr303Annotations}" * default-value="false" * @since 0.3.2 */ private boolean includeJsr303Annotations = false; /** * Whether to include * JSR-305 annotations * (for schema rules like Nullable, NonNull, etc) in generated Java types. * * @since 0.4.8 */ private boolean includeJsr305Annotations = false; /** * The type of input documents that will be read *

* Supported values: *

    *
  • jsonschema (schema documents, containing formal rules * that describe the structure of json data)
  • *
  • json (documents that represent an example of the kind of * json data that the generated Java types will be mapped to)
  • *
* * @parameter expression="${jsonschema2pojo.sourceType}" * default-value="jsonschema" * @since 0.3.3 */ private String sourceType = "jsonschema"; /** * Whether to empty the target directory before generation occurs, to clear * out all source files that have been generated previously. *

* Be warned, when activated this option will cause * jsonschema2pojo to indiscriminately delete the entire contents of * the target directory (all files and folders) before it begins * generating sources. * * @parameter expression="${jsonschema2pojo.removeOldOutput}" * default-value="false" * @since 0.3.7 */ private boolean removeOldOutput = false; /** * The character encoding that should be used when writing the generated * Java source files. * * @parameter expression="${jsonschema2pojo.outputEncoding}" * default-value="UTF-8" * @since 0.4.0 */ private String outputEncoding = "UTF-8"; /** * Whether to use {@link org.joda.time.DateTime} instead of * {@link java.util.Date} when adding date type fields to generated Java * types. * * @parameter expression="${jsonschema2pojo.useJodaDates}" * default-value="false" * @since 0.4.0 */ private boolean useJodaDates = false; /** * Whether to use {@link org.joda.time.LocalDate} instead of string when * adding string type fields of format date (not date-time) to generated * Java types. * * @parameter expression="${jsonschema2pojo.useJodaLocalDates}" * default-value="false" * @since 0.4.9 */ private boolean useJodaLocalDates = false; /** * Whether to use {@link org.joda.time.LocalTime} instead of string when * adding string type fields of format time (not date-time) to generated * Java types. * * @parameter expression="${jsonschema2pojo.useJodaLocalTimes}" * default-value="false" * @since 0.4.9 */ private boolean useJodaLocalTimes = false; /** * What type to use instead of string when adding string type fields of * format date-time to generated Java types. * * @parameter expression="${jsonschema2pojo.dateTimeType}" * @since 0.4.22 */ private String dateTimeType = null; /** * What type to use instead of string when adding string type fields of * format time (not date-time) to generated Java types. * * @parameter expression="${jsonschema2pojo.timeType}" * @since 0.4.22 */ private String timeType = null; /** * What type to use instead of string when adding string type fields of * format date (not date-time) to generated Java types. * * @parameter expression="${jsonschema2pojo.dateType}" * @since 0.4.22 */ private String dateType = null; /** * Whether to use commons-lang 3.x imports instead of commons-lang 2.x * imports when adding equals, hashCode and toString methods. * * @parameter expression="${jsonschema2pojo.useCommonsLang3}" * default-value="false" * @since 0.4.1 */ private boolean useCommonsLang3 = false; /** * **EXPERIMENTAL** Whether to make the generated types 'parcelable' (for * Android development). * * @parameter expression="${jsonschema2pojo.parcelable}" * default-value="false" * @since 0.4.11 */ private boolean parcelable = false; /** * Whether to make the generated types 'serializable'. * * @parameter expression="${jsonschema2pojo.serializable}" default="false" * @since 0.4.23 */ private boolean serializable = false; /** * Whether to initialize Set and List fields as empty collections, or leave * them as null. * * @parameter expression="${jsonschema2pojo.initializeCollections}" * default-value="true" * @since */ private boolean initializeCollections = true; /** * List of file patterns to include. * * @parameter * @since 0.4.3 */ private String[] includes; /** * List of file patterns to exclude. This only applies to the initial scan * of the file system and will not prevent inclusion through a "$ref" in one * of the schemas. * * @parameter * @since 0.4.3 */ private String[] excludes; /** * Whether to add a prefix to generated classes. * * @parameter expression="${jsonschema2pojo.classNamePrefix}" * @since 0.4.6 */ private String classNamePrefix = ""; /** * Whether to add a suffix to generated classes. * * @parameter expression="${jsonschema2pojo.classNameSuffix}" * @since 0.4.6 */ private String classNameSuffix = ""; /** * The file extenations that should be considered as file name extensions, * and therefore ignored, when creating Java class names. * * @parameter expression="${jsonschema2pojo.fileExtensions}" * default-value="" * @since 0.4.23 */ private String[] fileExtensions = new String[] {}; /** * Whether to generate constructors or not * * @parameter expression="${jsonschema2pojo.includeConstructors}" * default-value="false" * @since 0.4.8 */ private boolean includeConstructors = false; /** * Whether generated constructors should have parameters for all properties, * or only required ones. * * @parameter expression= * "${jsonschema2pojo.constructorsRequiredPropertiesOnly}" * default-value="false" * @since 0.4.8 */ private boolean constructorsRequiredPropertiesOnly = false; /** * Whether to allow 'additional properties' support in objects. Setting this * to false will disable additional properties support, regardless of the * input schema(s). * * @parameter expression="${jsonschema2pojo.includeAdditionalProperties}" * default-value="true" * @since 0.4.14 */ private boolean includeAdditionalProperties = true; /** * Whether to include getters/setters or to omit these accessor methods and * create public fields instead. * * @parameter expression="${jsonschema2pojo.includeAccessors}" * default-value="true" * @since 0.4.15 */ private boolean includeAccessors = true; /** * Whether to include getters or to omit this accessor method and * create public fields instead * * @parameter expression="${jsonschema2pojo.includeGetters}" * default-value="false" */ private boolean includeGetters = false; /** * Whether to include setters or to omit this accessor method and * create public fields instead * * @parameter expression="${jsonschame2pojo.includeSetters}" * default-value="false" */ private boolean includeSetters = false; /** * The target version for generated source files. * * @parameter expression="${maven.compiler.target}" default-value="1.6" * @since 0.4.17 */ private String targetVersion = "1.6"; /** * Whether to include dynamic getters, setters, and builders or to omit * these methods. * * @parameter expression="${jsonschema2pojo.includeDynamicAccessors}" * @since 0.4.17 */ private boolean includeDynamicAccessors = false; /** * Whether to include dynamic getters or to omit these methods. * * @parameter expression="${jsonschema2pojo.includeDynamicGetters}" * default-value="false" */ private boolean includeDynamicGetters = false; /** * Whether to include dynamic setters or to omit these methods. * * @parameter expression="${jsonschema2pojo.includeDynamicSetters}" * default-value="false" */ private boolean includeDynamicSetters = false; /** * Whether to include dynamic builders or to omit these methods. * * @parameter expression="${jsonschema2pojo.includeDynamicBuilders}" * default-value="false" */ private boolean includeDynamicBuilders = false; /** * The project being built. * * @parameter expression="${project}" * @required * @readonly */ private MavenProject project; /** * Whether the fields of type `date` are formatted during serialization with * a default pattern of yyyy-MM-dd. * * @parameter expression="${jsonschema2pojo.formatDates}" * default-value="false" * @since 0.4.33 */ private boolean formatDates = false; /** * Whether the fields of type `time` are formatted during serialization with * a default pattern of HH:mm:ss.SSS. * * @parameter expression="${jsonschema2pojo.formatTimes}" * default-value="false" * @since 0.4.36 */ private boolean formatTimes = false; /** * Whether the fields of type `date` are formatted during serialization with * a default pattern of yyyy-MM-dd'T'HH:mm:ss.SSSZ. * * @parameter expression="${jsonschema2pojo.formatDateTimes}" * default-value="false" * @since 0.4.29 */ private boolean formatDateTimes = false; /** * A custom pattern to use when formatting date fields during serialization. * Requires support from your JSON binding library. * * @parameter expression "${jsonschema2pojo.customDatePattern}" * @since 0.4.33 */ private String customDatePattern; /** * A custom pattern to use when formatting time fields during serialization. * Requires support from your JSON binding library. * * @parameter expression "${jsonschema2pojo.customTimePattern}" * @since 0.4.36 */ private String customTimePattern; /** * A custom pattern to use when formatting date-time fields during * serialization. Requires support from your JSON binding library. * * @parameter expression "${jsonschema2pojo.customDatePattern}" * @since 0.4.33 */ private String customDateTimePattern; /** * A string containing any characters that should act as path delimiters when resolving $ref fragments. * By default, #, / and . are used in an attempt to support JSON Pointer and JSON Path. * * @parameter expression="${jsonschema2pojo.refFragmentPathDelimiters}" default-value="#/." * @since 0.4.31 */ private String refFragmentPathDelimiters = "#/."; private FileFilter fileFilter = new AllFileFilter(); /** * The sort order to be applied when recursively processing the source * files. By default the OS can influence the processing order. Supported values: *

    *
  • OS (Let the OS influence the order the source files are processed.)
  • *
  • FILES_FIRST (Case sensitive sort, visit the files first. The source files are processed in a breadth * first sort order.)
  • *
  • SUBDIRS_FIRST (Case sensitive sort, visit the sub-directories before the files. The source files are * processed in a depth first sort order.)
  • *
* * @parameter expression="${jsonschema2pojo.sourceSortOrder}" default-value="OS" * @since 0.4.34 */ private String sourceSortOrder = SourceSortOrder.OS.toString(); /** * The type of code that will be generated. *

* Supported values: *

    *
  • java (Generate .java source files)
  • *
  • scala (Generate .scala source files, using scalagen)
  • *
* * @parameter expression="${jsonschema2pojo.targetLanguage}" default-value="java" * @since 0.5.0 */ private String targetLanguage = "java"; /** * Executes the plugin, to read the given source and behavioural properties * and generate POJOs. The current implementation acts as a wrapper around * the command line interface. */ @Override @edu.umd.cs.findbugs.annotations.SuppressWarnings(value = { "NP_UNWRITTEN_FIELD", "UWF_UNWRITTEN_FIELD" }, justification = "Private fields set by Maven.") @SuppressWarnings("PMD.UselessParentheses") public void execute() throws MojoExecutionException { addProjectDependenciesToClasspath(); try { getAnnotationStyle(); } catch (IllegalArgumentException e) { throw new MojoExecutionException("Not a valid annotation style: " + annotationStyle); } try { new AnnotatorFactory(this).getAnnotator(getCustomAnnotator()); } catch (IllegalArgumentException e) { throw new MojoExecutionException(e.getMessage(), e); } if (skip) { return; } // verify source directories if (sourceDirectory != null) { // verify sourceDirectory try { URLUtil.parseURL(sourceDirectory); } catch (IllegalArgumentException e) { throw new MojoExecutionException(e.getMessage(), e); } } else if (!isEmpty(sourcePaths)) { // verify individual source paths for (String source : sourcePaths) { try { URLUtil.parseURL(source); } catch (IllegalArgumentException e) { throw new MojoExecutionException(e.getMessage(), e); } } } else { throw new MojoExecutionException("One of sourceDirectory or sourcePaths must be provided"); } if (filteringEnabled() || (sourceDirectory != null && isEmpty(sourcePaths))) { if (sourceDirectory == null) { throw new MojoExecutionException("Source includes and excludes require the sourceDirectory property"); } if (!isEmpty(sourcePaths)) { throw new MojoExecutionException("Source includes and excludes are incompatible with the sourcePaths property"); } fileFilter = createFileFilter(); } if (addCompileSourceRoot) { project.addCompileSourceRoot(outputDirectory.getPath()); } try { Jsonschema2Pojo.generate(this); } catch (IOException e) { throw new MojoExecutionException("Error generating classes from JSON Schema file(s) " + sourceDirectory, e); } } private void addProjectDependenciesToClasspath() { try { ClassLoader oldClassLoader = Thread.currentThread().getContextClassLoader(); ClassLoader newClassLoader = new ProjectClasspath().getClassLoader(project, oldClassLoader, getLog()); Thread.currentThread().setContextClassLoader(newClassLoader); } catch (DependencyResolutionRequiredException e) { getLog().info("Skipping addition of project artifacts, there appears to be a dependecy resolution problem", e); } } @Override public boolean isGenerateBuilders() { return generateBuilders; } @Override public File getTargetDirectory() { return outputDirectory; } @Override public Iterator getSource() { if (null != sourceDirectory) { return Collections.singleton(URLUtil.parseURL(sourceDirectory)).iterator(); } List sourceURLs = new ArrayList(); for (String source : sourcePaths) { sourceURLs.add(URLUtil.parseURL(source)); } return sourceURLs.iterator(); } @Override public boolean isUsePrimitives() { return usePrimitives; } @Override public String getTargetPackage() { return targetPackage; } @Override public char[] getPropertyWordDelimiters() { return propertyWordDelimiters.toCharArray(); } @Override public boolean isUseLongIntegers() { return useLongIntegers; } @Override public boolean isUseDoubleNumbers() { return useDoubleNumbers; } @Override public boolean isIncludeHashcodeAndEquals() { return includeHashcodeAndEquals; } @Override public boolean isIncludeToString() { return includeToString; } @Override public String[] getToStringExcludes() { return toStringExcludes; } @Override public AnnotationStyle getAnnotationStyle() { return AnnotationStyle.valueOf(annotationStyle.toUpperCase()); } @Override public InclusionLevel getInclusionLevel() { return InclusionLevel.valueOf(inclusionLevel.toUpperCase()); } @Override @SuppressWarnings("unchecked") public Class getCustomAnnotator() { if (isNotBlank(customAnnotator)) { try { return (Class) Class.forName(customAnnotator); } catch (ClassNotFoundException e) { throw new IllegalArgumentException(e); } } else { return NoopAnnotator.class; } } @Override @SuppressWarnings("unchecked") public Class getCustomRuleFactory() { if (isNotBlank(customRuleFactory)) { try { return (Class) Class.forName(customRuleFactory); } catch (ClassNotFoundException e) { throw new IllegalArgumentException(e); } } else { return RuleFactory.class; } } @Override public boolean isIncludeJsr303Annotations() { return includeJsr303Annotations; } @Override public boolean isIncludeJsr305Annotations() { return includeJsr305Annotations; } @Override public SourceType getSourceType() { return SourceType.valueOf(sourceType.toUpperCase()); } @Override public boolean isRemoveOldOutput() { return removeOldOutput; } @Override public String getOutputEncoding() { return outputEncoding; } @Override public boolean isUseJodaDates() { return useJodaDates; } @Override public boolean isUseJodaLocalDates() { return useJodaLocalDates; } @Override public boolean isUseJodaLocalTimes() { return useJodaLocalTimes; } @Override public boolean isUseCommonsLang3() { return useCommonsLang3; } @Override public boolean isParcelable() { return parcelable; } @Override public boolean isSerializable() { return serializable; } @Override public FileFilter getFileFilter() { return fileFilter; } @Override public boolean isInitializeCollections() { return initializeCollections; } boolean filteringEnabled() { return !((includes == null || includes.length == 0) && (excludes == null || excludes.length == 0)); } FileFilter createFileFilter() throws MojoExecutionException { try { URL urlSource = URLUtil.parseURL(sourceDirectory); return new MatchPatternsFileFilter.Builder().addIncludes(includes).addExcludes(excludes).addDefaultExcludes().withSourceDirectory(URLUtil.getFileFromURL(urlSource).getCanonicalPath()).withCaseSensitive(false).build(); } catch (IOException e) { throw new MojoExecutionException("could not create file filter", e); } } @Override public String getClassNamePrefix() { return classNamePrefix; } @Override public String getClassNameSuffix() { return classNameSuffix; } @Override public String[] getFileExtensions() { return fileExtensions; } @Override public boolean isIncludeConstructors() { return includeConstructors; } @Override public boolean isConstructorsRequiredPropertiesOnly() { return constructorsRequiredPropertiesOnly; } @Override public boolean isIncludeAdditionalProperties() { return includeAdditionalProperties; } @Override public boolean isIncludeAccessors() { return includeAccessors; } @Override public boolean isIncludeGetters() { return includeGetters; } @Override public boolean isIncludeSetters() { return includeSetters; } @Override public String getTargetVersion() { return targetVersion; } @Override public boolean isIncludeDynamicAccessors() { return includeDynamicAccessors; } @Override public boolean isIncludeDynamicGetters() { return includeDynamicGetters; } @Override public boolean isIncludeDynamicSetters() { return includeDynamicSetters; } @Override public boolean isIncludeDynamicBuilders() { return includeDynamicBuilders; } @Override public String getDateTimeType() { return dateTimeType; } @Override public String getDateType() { return dateType; } @Override public String getTimeType() { return timeType; } @Override public boolean isUseBigIntegers() { return useBigIntegers; } @Override public boolean isUseBigDecimals() { return useBigDecimals; } @Override public boolean isFormatDateTimes() { return formatDateTimes; } @Override public boolean isFormatDates() { return formatDates; } @Override public boolean isFormatTimes() { return formatTimes; } @Override public String getCustomDatePattern() { return customDatePattern; } @Override public String getCustomTimePattern() { return customTimePattern; } @Override public String getCustomDateTimePattern() { return customDateTimePattern; } @Override public String getRefFragmentPathDelimiters() { return refFragmentPathDelimiters; } @Override public SourceSortOrder getSourceSortOrder() { return SourceSortOrder.valueOf(sourceSortOrder.toUpperCase()); } @Override public Language getTargetLanguage() { return Language.valueOf(targetLanguage.toUpperCase()); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy