com.cmeza.sdgenerator.util.GeneratorProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-data-generator Show documentation
Show all versions of spring-data-generator Show documentation
Spring Data Generator for JPA repositories and managers.
The newest version!
package com.cmeza.sdgenerator.util;
import lombok.Builder;
import lombok.Data;
import org.apache.maven.project.MavenProject;
import java.util.Set;
/**
* Created by carlos on 29/11/23.
*/
@Data
@Builder
public class GeneratorProperties {
private String[] entityPackage;
private String repositoryPackage;
private String repositoryPostfix;
private String managerPackage;
private String managerPostfix;
private boolean onlyAnnotations;
private boolean overwrite;
private boolean lombokAnnotations;
private boolean withComments;
private boolean withJpaSpecificationExecutor;
private Set additionalExtendsList;
private MavenProject project;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy