ca.gc.aafc.dina.dto.HierarchicalObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dina-base-api Show documentation
Show all versions of dina-base-api Show documentation
Base DINA API package for Java built on SpringBoot and Crnk
The newest version!
package ca.gc.aafc.dina.dto;
import java.util.UUID;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
@JsonInclude(JsonInclude.Include.NON_EMPTY)
public class HierarchicalObject {
@JsonIgnore
private Integer id;
private UUID uuid;
private String name;
private Integer rank;
private String type;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy