ca.gc.aafc.dina.extension.FieldExtensionValue 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.extension;
import lombok.Builder;
import lombok.Data;
import org.javers.core.metamodel.annotation.Value;
/**
* Represents the usage of a field extension with its associated value.
*
*/
@Data
@Builder
@Value
public class FieldExtensionValue {
// used to report error on validation
public static final String FIELD_KEY_NAME = "extFieldKey";
public static final String VALUE_KEY_NAME = "value";
private String extKey;
private String extFieldKey;
private String value;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy