1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.ksb.messaging; |
17 | |
|
18 | |
import java.io.Serializable; |
19 | |
|
20 | |
import javax.persistence.Column; |
21 | |
import javax.persistence.Entity; |
22 | |
import javax.persistence.GeneratedValue; |
23 | |
import javax.persistence.Id; |
24 | |
import javax.persistence.Lob; |
25 | |
import javax.persistence.Table; |
26 | |
|
27 | |
import org.hibernate.annotations.GenericGenerator; |
28 | |
import org.hibernate.annotations.Parameter; |
29 | |
import org.kuali.rice.core.framework.persistence.jpa.OrmUtils; |
30 | |
import org.kuali.rice.ksb.service.KSBServiceLocator; |
31 | |
|
32 | |
|
33 | |
|
34 | |
|
35 | |
|
36 | |
|
37 | |
@Entity |
38 | |
@Table(name="KRSB_FLT_SVC_DEF_T") |
39 | |
|
40 | |
public class FlattenedServiceDefinition implements Serializable { |
41 | |
private static final long serialVersionUID = -4622179363250818637L; |
42 | |
|
43 | |
@Id |
44 | |
@GeneratedValue(generator="KRSB_FLT_SVC_DEF_S") |
45 | |
@GenericGenerator(name="KRSB_FLT_SVC_DEF_S",strategy="org.hibernate.id.enhanced.SequenceStyleGenerator",parameters={ |
46 | |
@Parameter(name="sequence_name",value="KRSB_FLT_SVC_DEF_S"), |
47 | |
@Parameter(name="value_column",value="id") |
48 | |
}) |
49 | |
@Column(name="FLT_SVC_DEF_ID") |
50 | |
private Long flattenedServiceDefinitionId; |
51 | |
@Lob |
52 | |
@Column(name="FLT_SVC_DEF", length=4000) |
53 | |
private String flattenedServiceDefinitionData; |
54 | |
|
55 | |
|
56 | |
public void beforeInsert() { |
57 | 0 | OrmUtils.populateAutoIncValue(this, KSBServiceLocator.getRegistryEntityManagerFactory().createEntityManager()); |
58 | 0 | } |
59 | |
|
60 | 0 | public FlattenedServiceDefinition() { |
61 | 0 | } |
62 | |
|
63 | 0 | public FlattenedServiceDefinition(String flattenedServiceDefinitionData) { |
64 | 0 | this.flattenedServiceDefinitionData = flattenedServiceDefinitionData; |
65 | 0 | } |
66 | |
|
67 | |
public Long getFlattenedServiceDefinitionId() { |
68 | 0 | return this.flattenedServiceDefinitionId; |
69 | |
} |
70 | |
public void setFlattenedServiceDefinitionId(Long flattenedServiceDefinitionId) { |
71 | 0 | this.flattenedServiceDefinitionId = flattenedServiceDefinitionId; |
72 | 0 | } |
73 | |
|
74 | |
public String getFlattenedServiceDefinitionData() { |
75 | 0 | return this.flattenedServiceDefinitionData; |
76 | |
} |
77 | |
public void setFlattenedServiceDefinitionData(String flattenedServiceDefinitionData) { |
78 | 0 | this.flattenedServiceDefinitionData = flattenedServiceDefinitionData; |
79 | 0 | } |
80 | |
|
81 | |
} |