InventoryViabilityRule.java

/*
 * Copyright 2019 Global Crop Diversity Trust
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.gringlobal.model;

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.NotNull;
import javax.validation.constraints.Size;

import com.fasterxml.jackson.annotation.JsonIdentityInfo;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.ObjectIdGenerators;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
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 static org.gringlobal.model.community.CommunityCodeValues.CODE_VALUE_LENGTH;

/**
 * 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;

	@Basic
	@CodeValueField(CommunityCodeValues.GERMINATION_CATEGORY)
	@Column(name = "category_code", length = CODE_VALUE_LENGTH)
	private String categoryCode;

	@OneToMany(fetch = FetchType.LAZY, cascade = {}, mappedBy = "inventoryViabilityRule")
	@JsonIgnore
	private List<InventoryViabilityRuleMap> ruleMaps;

	@Basic
	@Size(max = 100)
	@Column(name = "count_regime_days", length = 100)
	private String countRegimeDays;

	@Id
	@JsonProperty
	@GeneratedValue(strategy = GenerationType.IDENTITY)
	@Column(name = "inventory_viability_rule_id", columnDefinition = "int")
	private Long id;

	@Basic
	@Size(max = 100)
	@Column(length = 100)
	private String lighting;

	@Basic
	@Size(max = 100)
	@Column(length = 100)
	private String moisture;

	@Basic
	@NotNull
	@Size(max = 100)
	@Column(nullable = false, length = 100)
	@LookupDisplay
	private String name;

	@Basic
	@Column
	@Lob
	private String note;

	@Basic
	@Column(name = "number_of_replicates")
	private Integer numberOfReplicates;

	@Basic
	@Size(max = 100)
	@Column(length = 100)
	private String prechill;

	@Basic
	@Column
	@Lob
	private String requirements;

	@Basic
	@Column(name = "seeds_per_replicate")
	private Integer seedsPerReplicate;

	@Basic
	@Size(max = 100)
	@Column(length = 100)
	private String substrata;

	@Basic
	@Size(max = 100)
	@Column(name = "temperature_range", length = 100)
	private String temperatureRange;

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

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

}