com.smartnews.jpa_entity_generator.rule.AnnotationAttribute 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;
/**
* Represents an attribute of a Java annotation.
*/
@Data
public class AnnotationAttribute implements Serializable {
private String name;
private String value;
private String code;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy