Files
config-pacs-docker/dcm4chee/default/conf/xmdesc/dcm4chee-hl7oru-xmbean.xml
2025-02-26 14:49:25 +07:00

144 lines
5.3 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mbean PUBLIC
"-//JBoss//DTD JBOSS XMBEAN 1.1//EN"
"http://www.jboss.org/j2ee/dtd/jboss_xmbean_1_1.dtd">
<mbean>
<description><![CDATA[The <b>ORU HL7 Service</b> converts ORU^R01 messages
into DICOM structured reports, so a viewer can just use the PACS system to
access the report.]]>
</description>
<descriptors>
<persistence persistPolicy="OnUpdate"/>
<persistence-manager value="org.jboss.mx.persistence.DelegatingPersistenceManager" />
</descriptors>
<class>org.dcm4chex.archive.hl7.ORUService</class>
<constructor>
<description>The default constructor</description>
<name>ORUService</name>
</constructor>
<!-- Attributes -->
<attribute access="read-write"
getMethod="getMessageTypes"
setMethod="setMessageTypes">
<description>Comma separated list of Message Types handled by this Service.
</description>
<name>MessageTypes</name>
<type>java.lang.String</type>
<descriptors>
<value value="ORU^R01" />
</descriptors>
</attribute>
<attribute access="read-write"
getMethod="getTemplateDir"
setMethod="setTemplateDir">
<description><![CDATA[Directory where template file(s) are located.<br />
A style sheet can be placed in this directory or in a sub-directory to select a style sheet according to the sender.<br />
This sub-directory can be &lt;IPAddr&gt;, &lt;hostname&gt; or '&lt;Sending Application&gt;^&lt;Sending Facility&gt;' (In this order).<br />
(See also UseHostSubdirs attribute in HL7Server service to enable IP/hostname selection)<br />
A relative path name is resolved relative to
<i>archive-install-directory</i>/server/default/.]]>
</description>
<name>TemplateDir</name>
<type>java.lang.String</type>
<descriptors>
<value value="conf/dcm4chee-hl7"/>
</descriptors>
</attribute>
<attribute access="read-write"
getMethod="getStylesheet"
setMethod="setStylesheet">
<description><![CDATA[Name of Stylesheet for HL7 ORU^R01 to DICOM SR mapping.<br />
Base dir: <code>TemplateDir</code><br/>
If this name contains a '/' or '\' the configured <code>TemplateDir</code> will be NOT applied!
In this case the name is the full path of the stylesheet and a relative path name is resolved relative to
<i>archive-install-directory</i>/server/default/.]]>
</description>
<name>Stylesheet</name>
<type>java.lang.String</type>
<descriptors>
<value value="oru2sr.xsl" />
</descriptors>
</attribute>
<attribute access="read-write"
getMethod="getObxIgnoreStati"
setMethod="setObxIgnoreStati">
<description><![CDATA[List of OBX Stati that should be ignored by this service. <br/>
Seperate multiple stati with ','.<br/>
Use NONE to process all ORU messages<p/>
Default field number in OBX segment is 11 (OBSERV RESULT STATUS).
You can change the default by preceeding '&lt;fieldNr&gt;:'<br/>
e.g.: 'D,X' ignore all ORU message with status D and X in OBX field 11 <br/>
'8:A' ignore all ORU messages with A in OBX field 8 (Abnormal Flags)]]>
</description>
<name>ObxIgnoreStati</name>
<type>java.lang.String</type>
<descriptors>
<value value="NONE" />
</descriptors>
</attribute>
<attribute access="read-write"
getMethod="getStorePriority"
setMethod="setStorePriority">
<description>Store priority. Enumerated Values: LOW, MEDIUM, HIGH.
</description>
<name>StorePriority</name>
<type>java.lang.String</type>
<descriptors>
<value value="MEDIUM"/>
</descriptors>
</attribute>
<attribute access="read-write"
getMethod="getFetchSize"
setMethod="setFetchSize">
<description>JDBC Fetch size.
</description>
<name>FetchSize</name>
<type>int</type>
<descriptors>
<value value="50"/>
</descriptors>
</attribute>
<attribute access="read-write"
getMethod="getExportManagerName"
setMethod="setExportManagerName">
<description>Used internally. Do NOT modify.
</description>
<name>ExportManagerName</name>
<type>javax.management.ObjectName</type>
</attribute>
<attribute access="read-write"
getMethod="getHL7ServerName"
setMethod="setHL7ServerName">
<description>Used internally. Do NOT modify.
</description>
<name>HL7ServerName</name>
<type>javax.management.ObjectName</type>
</attribute>
<attribute access="read-write"
getMethod="getTemplatesServiceName"
setMethod="setTemplatesServiceName">
<description>Used internally. Do NOT modify.
</description>
<name>TemplatesServiceName</name>
<type>javax.management.ObjectName</type>
</attribute>
&defaultAttributes;
<!-- Operations -->
&defaultOperations;
<operation impact="ACTION">
<description>Process XML message</description>
<name>process</name>
<parameter>
<name>msg</name>
<type>org.dom4j.Document</type>
</parameter>
<return-type>void</return-type>
</operation>
</mbean>