Downloads Documentation Community Contribute Demo






Show Sidebar
Login | Register

root/openmrs-modules/chica/metadata/config.xml

Revision 6488, 4.8 kB (checked in by tmdugan, 1 week ago)

-- chica

* added code to void and store obs for rescan

Line 
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE module PUBLIC "-//OpenMRS//DTD OpenMRS Config 1.0//EN" "http://resources.openmrs.org/doctype/config-1.0.dtd">
3
4 <module configVersion="1.0">
5        
6         <!-- Chica Module Properties -->
7         <id>chica</id>
8         <name>Chica</name>
9         <version>1.31</version>
10         <package>org.openmrs.module.@MODULE_ID@</package>
11         <author>Vibha Anand and Tammy Dugan</author>
12         <description>
13                         Runs CHICA specific tasks.
14         </description>
15
16         <activator>@MODULE_PACKAGE@.ChicaActivator</activator>
17        
18         <!-- /Chica Module Properties -->
19        
20         <require_version>1.1.10.2283</require_version>
21         <require_modules>
22                 <require_module>org.openmrs.module.dss</require_module>
23                 <require_module>org.openmrs.module.atd</require_module>
24                 <require_module>org.openmrs.module.sockethl7listener</require_module>
25         </require_modules>
26        
27         <extension>
28                 <point>org.openmrs.admin.list</point>
29                 <class>org.openmrs.module.chica.extension.html.AdminList</class>
30         </extension>
31        
32         <globalProperty>
33                 <property>chica.statsConfigFile</property>
34                 <description>This file contains configuration for chica statistics.
35                 This file can be found at metadata/stats_config.xml
36                 </description>
37         </globalProperty>
38         <globalProperty>
39                 <property>chica.kiteHost</property>
40                 <defaultValue>134.68.32.31</defaultValue>
41                 <description>Host address to query for mrf dump and aliases.
42                 </description>
43         </globalProperty>
44         <globalProperty>
45                 <property>chica.kitePort</property>
46                 <defaultValue>17094</defaultValue>
47                 <description>Port to query for mrf dump and aliases.
48                 </description>
49         </globalProperty>
50         <globalProperty>
51                 <property>chica.kiteTimeout</property>
52                 <defaultValue>60</defaultValue>
53                 <description>Timeout for mrf dump and alias queries (in seconds).
54                 </description>
55         </globalProperty>
56         <globalProperty>
57                 <property>chica.mrfArchiveDirectory</property>
58                 <description>Directory where a copy of the mrf dump is stored.
59                 </description>
60         </globalProperty>
61         <globalProperty>
62                 <property>chica.aliasArchiveDirectory</property>
63                 <description>Directory where a copy of the alias query result is stored.
64                 </description>
65         </globalProperty>
66         <globalProperty>
67                 <property>chica.greaseBoardRefresh</property>
68                 <defaultValue>5</defaultValue>
69                 <description>Refresh period is seconds for the grease board refresh.
70                 </description>
71         </globalProperty>
72         <globalProperty>
73                 <property>chica.pagerNumber</property>
74                 <description>Number of support pager for CHICA clinic.
75                 </description>
76         </globalProperty>
77         <globalProperty>
78                 <property>chica.pagerMessage</property>
79                 <description>Message sent to support pager for CHICA clinic.
80                 </description>
81         </globalProperty>
82         <globalProperty>
83                 <property>chica.mrfParseErrorDirectory</property>
84                 <description>Directory where a copy of an mrf query result that couldn't be parsed is stored.
85                 </description>
86         </globalProperty>       
87         <globalProperty>
88                 <property>chica.smsParseErrorDirectory</property>
89                 <description>Directory where a copy of an sms checkin hl7 message that couldn't be parsed is stored.
90                 </description>
91         </globalProperty>       
92         <globalProperty>
93                 <property>chica.mckessonParseErrorDirectory</property>
94                 <description>Directory where a copy of an mckesson checkin hl7 message that couldn't be parsed is stored.
95                 </description>
96         </globalProperty>
97         <globalProperty>
98                 <property>chica.programName</property>
99                 <defaultValue>chica</defaultValue>
100                 <description>name for the chica program in the atd_program table
101                 </description>
102         </globalProperty>
103         <globalProperty>
104                 <property>chica.programVersion</property>
105                 <defaultValue>1.0</defaultValue>
106                 <description>version of the chica program
107                 </description>
108         </globalProperty>
109         <advice>
110                 <point>org.openmrs.module.sockethl7listener.service.SocketHL7ListenerService</point>
111                 <class>@MODULE_PACKAGE@.advice.TriggerPatientAfterAdvice</class>
112         </advice>
113         <advice>
114                 <point>org.openmrs.module.atd.service.ATDService</point>
115                 <class>@MODULE_PACKAGE@.advice.TriggerPatientAfterAdvice</class>
116         </advice>
117        
118         <!-- Internationalization -->
119         <!-- All message codes should start with @MODULE_ID@.* -->
120         <messages>
121                 <lang>en</lang>
122                 <file>messages.properties</file>
123         </messages>
124         <!-- /Internationalization -->
125        
126         <mappingFiles>
127                 hcageinf.hbm.xml
128                 lenageinf.hbm.xml
129                 wtageinf.hbm.xml
130                 bmiage.hbm.xml
131                 encounter.hbm.xml
132                 study.hbm.xml
133                 study_attribute.hbm.xml
134                 study_attribute_value.hbm.xml
135                 old_rule.hbm.xml
136                 chica1_patient.hbm.xml
137                 chica1_patient_obsv.hbm.xml
138                 chica1_appointments.hbm.xml
139                 insurance_category.hbm.xml
140                 family.hbm.xml
141                 patient_family.hbm.xml
142                 statistics.hbm.xml
143                 chica_error_category.hbm.xml
144                 chica_error.hbm.xml
145                 ddst.hbm.xml
146                 high_bp.hbm.xml
147         </mappingFiles>
148        
149 </module>
150
Note: See TracBrowser for help on using the browser.