InventoryViabilityRule.java

/*
 * Copyright 2026 Global Crop Diversity Trust
 * Licensed under the Apache License, Version 2.0
 * See LICENSE file in project root folder or http://www.apache.org/licenses/LICENSE-2.0
 */

package org.gringlobal.model;

import static org.gringlobal.model.community.CommunityCodeValues.CODE_VALUE_LENGTH;

import java.util.List;
import javax.persistence.Basic;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Lob;
import javax.persistence.OneToMany;
import javax.persistence.Table;
import javax.validation.constraints.Min;
import javax.validation.constraints.NotNull;
import javax.validation.constraints.Size;

import org.genesys.blocks.model.Copyable;

import org.gringlobal.compatibility.LookupDisplay;
import org.gringlobal.custom.validation.javax.CodeValueField;
import org.gringlobal.model.community.CommunityCodeValues;

import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;

import com.fasterxml.jackson.annotation.JsonIdentityInfo;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.ObjectIdGenerators;

/**
 * Auto-generated by:
 * org.apache.openjpa.jdbc.meta.ReverseMappingTool$AnnotatedCodeGenerator
 */
@Entity
@Table(name = "inventory_viability_rule")
@JsonIdentityInfo(scope = InventoryViabilityRule.class, generator = ObjectIdGenerators.PropertyGenerator.class, property = "id")
@Getter
@Setter
@NoArgsConstructor
public class InventoryViabilityRule extends CooperatorOwnedModel implements Copyable<InventoryViabilityRule> {

	private static final long serialVersionUID = 5870554215776334487L;

	/** Inventory Viability Rule ID. */
	@Id
	@JsonProperty
	@GeneratedValue(strategy = GenerationType.IDENTITY)
	@Column(name = "inventory_viability_rule_id", columnDefinition = "int")
	private Long id;

	/** Name: Name of this viability rule. */
	@Basic
	@NotNull @Size(max = 100) @Column(nullable = false, length = 100)
	@LookupDisplay
	private String name;

	/** Category: Germination category for this rule. Uses GERMINATION_CATEGORY vocabulary. */
	@Basic
	@CodeValueField(CommunityCodeValues.GERMINATION_CATEGORY)
	@Column(name = "category_code", length = CODE_VALUE_LENGTH)
	private String categoryCode;

	/** Count Regime Days: Counting regime days. */
	@Basic
	@Size(max = 100) @Column(name = "count_regime_days", length = 100)
	private String countRegimeDays;

	/** Lighting: Lighting conditions for the test. */
	@Basic
	@Size(max = 100) @Column(length = 100)
	private String lighting;

	/** Moisture: Moisture conditions for the test. */
	@Basic
	@Size(max = 100) @Column(length = 100)
	private String moisture;

	/** Number Of Replicates: Number of replicates for the test. No decimals; whole numbers only. */
	@Basic
	@Column(name = "number_of_replicates")
	@Min(1) private Integer numberOfReplicates;

	/** Prechill: Prechill treatment for the test. */
	@Basic
	@Size(max = 100) @Column(length = 100)
	private String prechill;

	/** Requirements: Requirements for the viability test. */
	@Basic
	@Column
	@Lob
	private String requirements;

	/** Seeds Per Replicate: Number of seeds per replicate. No decimals; whole numbers only. */
	@Basic
	@Column(name = "seeds_per_replicate")
	@Min(1) private Integer seedsPerReplicate;

	/** Substrata: Substrata used for the test. */
	@Basic
	@Size(max = 100) @Column(length = 100)
	private String substrata;

	/** Temperature Range: Temperature range for the test. */
	@Basic
	@Size(max = 100) @Column(name = "temperature_range", length = 100)
	private String temperatureRange;

	/** Note: General remarks about this viability rule. */
	@Basic
	@Column
	@Lob
	private String note;

	/** Rule Maps: Species mappings for this viability rule. */
	@OneToMany(fetch = FetchType.LAZY, cascade = {}, mappedBy = "inventoryViabilityRule")
	@JsonIgnore
	private List<InventoryViabilityRuleMap> ruleMaps;

	public InventoryViabilityRule(final Long id) {
		this.id = id;
	}

	@Override
	public boolean canEqual(Object other) {
		return other instanceof InventoryViabilityRule;
	}

}