File tree 7 files changed +14
-0
lines changed
src/main/java/org/brapi/test/BrAPITestServer/model/entity
7 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 5
5
import javax .persistence .*;
6
6
7
7
import org .brapi .test .BrAPITestServer .model .entity .BrAPIBaseEntity ;
8
+ import org .hibernate .annotations .Where ;
8
9
9
10
@ Entity
10
11
@ Table (name = "trial_dataset_authorship" )
12
+ @ Where (clause = "soft_deleted = false" )
11
13
public class DatasetAuthorshipEntity extends BrAPIBaseEntity {
12
14
@ Column
13
15
private String datasetPUI ;
Original file line number Diff line number Diff line change 3
3
import javax .persistence .*;
4
4
5
5
import org .brapi .test .BrAPITestServer .model .entity .BrAPIBaseEntity ;
6
+ import org .hibernate .annotations .Where ;
6
7
7
8
@ Entity
8
9
@ Table (name = "trial_publication" )
10
+ @ Where (clause = "soft_deleted = false" )
9
11
public class PublicationEntity extends BrAPIBaseEntity {
10
12
@ Column
11
13
private String publicationPUI ;
Original file line number Diff line number Diff line change 9
9
import org .brapi .test .BrAPITestServer .model .entity .pheno .ObservationEntity ;
10
10
import org .brapi .test .BrAPITestServer .model .entity .pheno .ObservationUnitEntity ;
11
11
import org .brapi .test .BrAPITestServer .model .entity .pheno .ObservationVariableEntity ;
12
+ import org .hibernate .annotations .Where ;
12
13
13
14
@ Entity
14
15
@ Table (name = "study" )
16
+ @ Where (clause = "soft_deleted = false" )
15
17
public class StudyEntity extends BrAPIPrimaryEntity {
16
18
17
19
@ Column
Original file line number Diff line number Diff line change 7
7
import javax .persistence .*;
8
8
9
9
import org .brapi .test .BrAPITestServer .model .entity .BrAPIPrimaryEntity ;
10
+ import org .hibernate .annotations .Where ;
10
11
11
12
@ Entity
12
13
@ Table (name = "callset" )
14
+ @ Where (clause = "soft_deleted = false" )
13
15
public class CallSetEntity extends BrAPIPrimaryEntity {
14
16
@ Column
15
17
private String callSetName ;
Original file line number Diff line number Diff line change 14
14
15
15
import io .swagger .model .geno .PlateFormat ;
16
16
import io .swagger .model .geno .SampleType ;
17
+ import org .hibernate .annotations .Where ;
17
18
18
19
@ Entity
19
20
@ Table (name ="plate" )
21
+ @ Where (clause = "soft_deleted = false" )
20
22
public class PlateEntity extends BrAPIPrimaryEntity {
21
23
@ Column
22
24
private String clientPlateDbId ;
Original file line number Diff line number Diff line change 11
11
import org .brapi .test .BrAPITestServer .model .entity .core .SeasonEntity ;
12
12
import org .brapi .test .BrAPITestServer .model .entity .core .StudyEntity ;
13
13
import org .brapi .test .BrAPITestServer .model .entity .core .TrialEntity ;
14
+ import org .hibernate .annotations .Where ;
14
15
15
16
@ Entity
16
17
@ Table (name = "observation" )
18
+ @ Where (clause = "soft_deleted = false" )
17
19
public class ObservationEntity extends BrAPIPrimaryEntity {
18
20
@ Column
19
21
private String collector ;
Original file line number Diff line number Diff line change 12
12
import org .brapi .test .BrAPITestServer .model .entity .germ .CrossEntity ;
13
13
import org .brapi .test .BrAPITestServer .model .entity .germ .GermplasmEntity ;
14
14
import org .brapi .test .BrAPITestServer .model .entity .germ .SeedLotEntity ;
15
+ import org .hibernate .annotations .Where ;
15
16
16
17
@ Entity
17
18
@ Table (name = "observation_unit" )
19
+ @ Where (clause = "soft_deleted = false" )
18
20
public class ObservationUnitEntity extends BrAPIPrimaryEntity {
19
21
@ ManyToOne (fetch = FetchType .LAZY )
20
22
private CrossEntity cross ;
You can’t perform that action at this time.
0 commit comments