com.smartnews.jpa_entity_generator.rule.InterfaceRule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jpa-entity-generator Show documentation
Show all versions of jpa-entity-generator Show documentation
Lombok-wired JPA entity source code generator, Gradle and Maven supported.
package com.smartnews.jpa_entity_generator.rule;
import lombok.Data;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
/**
* Rule used to generate an interface.
*/
@Data
public class InterfaceRule implements Serializable, ClassMatcher {
/**
* A single partial-matching rule.
*/
private String className;
/**
* multiple partial-matching rule.
*/
private List classNames = new ArrayList<>();
/**
* The interfaces to be implemented.
*/
private List interfaces = new ArrayList<>();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy