ca.gc.aafc.dina.service.NameUUIDPair 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.service;
import java.util.UUID;
import lombok.Builder;
/**
* Representing a Pair of Name/UUID
* @param name
* @param uuid
*/
@Builder
public record NameUUIDPair(String name, UUID uuid) {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy