Crop.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.*;
import javax.validation.constraints.NotNull;
import javax.validation.constraints.Size;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import org.genesys.blocks.model.Copyable;
import org.gringlobal.compatibility.LookupDisplay;
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 = "crop")
@Cacheable
@JsonIdentityInfo(scope = Crop.class, generator = ObjectIdGenerators.PropertyGenerator.class, property = "id")
@Getter
@Setter
@NoArgsConstructor
public class Crop extends CooperatorOwnedModel implements Copyable<Crop> {
private static final long serialVersionUID = -2859429446253729710L;
@Id
@JsonProperty
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "crop_id", columnDefinition = "int")
private Long id;
@NotNull
@Size(min = 1, max = 20)
@Basic
@Column(nullable = false, length = 20)
@LookupDisplay
private String name;
@Basic
@Column
@Lob
private String note;
@OneToMany(cascade = {}, fetch = FetchType.LAZY, mappedBy = "crop")
@JsonIgnore
private List<CropAttach> attachments;
public Crop(final Long id) {
this.id = id;
}
public Crop(final String name) {
this.name = name;
}
public Crop(final String name, final String note) {
this.name = name;
this.note = note;
}
@Override
public void lazyLoad() {
super.lazyLoad();
if (attachments != null) {
attachments.size();
attachments.forEach(a -> {
if (a.getRepositoryFile() != null)
a.getRepositoryFile().getId();
});
}
}
@Override
public boolean canEqual(Object other) {
return other instanceof Crop;
}
}