source: ccr/trunk/nhin-vista/projects/NHINC/Current/Product/Production/Gateway/AuditRepositoryDAO/src/gov/hhs/fha/nhinc/hibernate/AuditRepositoryRecord.java@ 507

Last change on this file since 507 was 507, checked in by George Lilly, 15 years ago

NHIN gateway and adaptor for use on linux with VistA EHR and RPMS

File size: 2.9 KB
Line 
1/*
2 * To change this template, choose Tools | Templates
3 * and open the template in the editor.
4 */
5
6package gov.hhs.fha.nhinc.hibernate;
7
8import java.util.Date;
9import java.sql.Blob;
10
11/**
12 *
13 * @author MFLYNN02
14 */
15public class AuditRepositoryRecord {
16 private int id = 0;
17 private Date timeStamp = null;
18 private int eventId = 0;
19 private String userId = null;
20 private int participationTypeCode = 0;
21 private int participationTypeCodeRole = 0;
22 private String participationIDTypeCode = null;
23 private String receiverPatientId = null;
24 private String senderPatientId = null;
25 private String communityId = null;
26 private String messageType = null;
27 private Blob message = null;
28
29 public AuditRepositoryRecord() {
30 }
31
32 public int getEventId() {
33 return eventId;
34 }
35
36 public void setEventId(int eventId) {
37 this.eventId = eventId;
38 }
39
40 public int getId() {
41 return id;
42 }
43
44 public void setId(int id) {
45 this.id = id;
46 }
47
48 public Blob getMessage() {
49 return message;
50 }
51
52 public void setMessage(Blob message) {
53 this.message = message;
54 }
55
56 public String getMessageType() {
57 return messageType;
58 }
59
60 public void setMessageType(String messageType) {
61 this.messageType = messageType;
62 }
63
64 public String getParticipationIDTypeCode() {
65 return participationIDTypeCode;
66 }
67
68 public void setParticipationIDTypeCode(String participationIDTypeCode) {
69 this.participationIDTypeCode = participationIDTypeCode;
70 }
71
72 public int getParticipationTypeCode() {
73 return participationTypeCode;
74 }
75
76 public void setParticipationTypeCode(int participationTypeCode) {
77 this.participationTypeCode = participationTypeCode;
78 }
79
80 public int getParticipationTypeCodeRole() {
81 return participationTypeCodeRole;
82 }
83
84 public void setParticipationTypeCodeRole(int participationTypeCodeRole) {
85 this.participationTypeCodeRole = participationTypeCodeRole;
86 }
87
88 public String getCommunityId() {
89 return communityId;
90 }
91
92 public void setCommunityId(String communityId) {
93 this.communityId = communityId;
94 }
95
96 public String getReceiverPatientId() {
97 return receiverPatientId;
98 }
99
100 public void setReceiverPatientId(String receiverPatientId) {
101 this.receiverPatientId = receiverPatientId;
102 }
103
104 public String getSenderPatientId() {
105 return senderPatientId;
106 }
107
108 public void setSenderPatientId(String senderPatientId) {
109 this.senderPatientId = senderPatientId;
110 }
111
112 public Date getTimeStamp() {
113 return timeStamp;
114 }
115
116 public void setTimeStamp(Date timeStamp) {
117 this.timeStamp = timeStamp;
118 }
119
120 public String getUserId() {
121 return userId;
122 }
123
124 public void setUserId(String userId) {
125 this.userId = userId;
126 }
127
128}
Note: See TracBrowser for help on using the repository browser.