ca.gc.aafc.dina.jpa.DinaObjectSummary 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
package ca.gc.aafc.dina.jpa;
import java.util.UUID;
import lombok.AllArgsConstructor;
import lombok.Getter;
/**
* Summary that contains information to perform actions (e.g. authorization) without loading the entire entity.
*/
@AllArgsConstructor
@Getter
public class DinaObjectSummary {
private UUID uuid;
private String group;
private String createdBy;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy