Skip to content

Instantly share code, notes, and snippets.

View thepipeman's full-sized avatar

Aaron thepipeman

  • Nextbank
  • Philippines
View GitHub Profile
@thepipeman
thepipeman / model_with_lombok.mustache
Last active June 10, 2021 03:22
Java openapi generator - model template with Lombok annotations
{{>licenseInfo}}
package {{package}};
import lombok.*;
{{#useReflectionEqualsHashCode}}
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
{{/useReflectionEqualsHashCode}}
{{^supportJava6}}