1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34 package fr.paris.lutece.plugins.document.business.history;
35
36 import fr.paris.lutece.util.sql.DAOUtil;
37
38 import java.util.ArrayList;
39 import java.util.Collection;
40 import java.util.List;
41
42
43
44
45
46 public final class HistoryEventDAO implements IHistoryEventDAO
47 {
48
49 private static final String SQL_QUERY_INSERT = " INSERT INTO document_history ( id_document, event_date, event_user, event_message_key, document_state_key, document_space ) VALUES ( ?, ?, ?, ?, ?, ? ) ";
50 private static final String SQL_QUERY_DELETE = " DELETE FROM document_history WHERE id_document = ? ";
51 private static final String SQL_QUERY_SELECT_BY_DOCUMENT = " SELECT id_document, event_date, event_user, event_message_key, document_state_key, document_space FROM document_history WHERE id_document = ? ";
52 private static final String SQL_QUERY_SELECT_BY_USER = " SELECT id_document, event_date, event_user, event_message_key, document_state_key, document_space FROM document_history WHERE event_user = ? ";
53
54
55
56
57
58
59 public void insert( HistoryEvent historyEvent )
60 {
61 DAOUtil daoUtil = new DAOUtil( SQL_QUERY_INSERT );
62 daoUtil.setInt( 1, historyEvent.getIdDocument( ) );
63 daoUtil.setTimestamp( 2, historyEvent.getDate( ) );
64 daoUtil.setString( 3, historyEvent.getEventUser( ) );
65 daoUtil.setString( 4, historyEvent.getEventMessageKey( ) );
66 daoUtil.setString( 5, historyEvent.getDocumentStateKey( ) );
67 daoUtil.setString( 6, historyEvent.getSpace( ) );
68
69 daoUtil.executeUpdate( );
70 daoUtil.free( );
71 }
72
73
74
75
76
77
78 public void delete( int nDocumentId )
79 {
80 DAOUtil daoUtil = new DAOUtil( SQL_QUERY_DELETE );
81 daoUtil.setInt( 1, nDocumentId );
82
83 daoUtil.executeUpdate( );
84 daoUtil.free( );
85 }
86
87
88
89
90
91
92
93 public List<HistoryEvent> selectEventListByDocument( int nDocumentId )
94 {
95 List<HistoryEvent> listHistoryEvents = new ArrayList<HistoryEvent>( );
96 DAOUtil daoUtil = new DAOUtil( SQL_QUERY_SELECT_BY_DOCUMENT );
97 daoUtil.setInt( 1, nDocumentId );
98 daoUtil.executeQuery( );
99
100 while ( daoUtil.next( ) )
101 {
102 HistoryEventdocument/business/history/HistoryEvent.html#HistoryEvent">HistoryEvent event = new HistoryEvent( );
103 event.setIdDocument( daoUtil.getInt( 1 ) );
104 event.setDate( daoUtil.getTimestamp( 2 ) );
105 event.setEventUser( daoUtil.getString( 3 ) );
106 event.setEventMessageKey( daoUtil.getString( 4 ) );
107 event.setDocumentStateKey( daoUtil.getString( 5 ) );
108 event.setSpace( daoUtil.getString( 6 ) );
109
110 listHistoryEvents.add( event );
111 }
112
113 daoUtil.free( );
114
115 return listHistoryEvents;
116 }
117
118
119
120
121
122
123
124 public Collection<HistoryEvent> selectEventListByUser( String strUserId )
125 {
126 Collection<HistoryEvent> listHistoryEvents = new ArrayList<HistoryEvent>( );
127 DAOUtil daoUtil = new DAOUtil( SQL_QUERY_SELECT_BY_USER );
128 daoUtil.setString( 1, strUserId );
129 daoUtil.executeQuery( );
130
131 while ( daoUtil.next( ) )
132 {
133 HistoryEventdocument/business/history/HistoryEvent.html#HistoryEvent">HistoryEvent event = new HistoryEvent( );
134 event.setIdDocument( daoUtil.getInt( 1 ) );
135 event.setDate( daoUtil.getTimestamp( 2 ) );
136 event.setEventUser( daoUtil.getString( 3 ) );
137 event.setEventMessageKey( daoUtil.getString( 4 ) );
138 event.setDocumentStateKey( daoUtil.getString( 5 ) );
139 event.setSpace( daoUtil.getString( 6 ) );
140
141 listHistoryEvents.add( event );
142 }
143
144 daoUtil.free( );
145
146 return listHistoryEvents;
147 }
148 }