All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ca.gc.aafc.dina.extension.FieldExtensionValue Maven / Gradle / Ivy

There is a newer version: 0.132
Show newest version
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