forked from krishagni/openspecimen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproperties-service.xml
More file actions
79 lines (56 loc) · 2.44 KB
/
properties-service.xml
File metadata and controls
79 lines (56 loc) · 2.44 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE server>
<!-- $Id: properties-service.xml,v 1.1 2006/09/27 08:48:16 Poornima Exp $ -->
<server>
<!-- ==================================================================== -->
<!-- PropertyEditorManager Service -->
<!-- ==================================================================== -->
<!--
| Allows access to the PropertyEditorManager, which is used when setting
| MBean attribute values from configuration.
-->
<mbean code="org.jboss.varia.property.PropertyEditorManagerService"
name="jboss:type=Service,name=PropertyEditorManager">
<!--
| Register and editor for each of the type_name=editor_type_name listed
| in properties file style convetion.
<attribute name="Editors">
java.net.URL=my.project.editors.URLPropertyEditor
</attribute>
-->
</mbean>
<!-- ==================================================================== -->
<!-- System Properties Service -->
<!-- ==================================================================== -->
<!--
| Allows rich access to system properties.
-->
<mbean code="org.jboss.varia.property.SystemPropertiesService"
name="jboss:type=Service,name=SystemProperties">
<!--
| Load properties from each of the given comma seperated URLs
<attribute name="URLList">
http://somehost/some-location.properties,
./conf/somelocal.properties
</attribute>
-->
<!--
| Set raw properties file style properties.
<attribute name="Properties">
my.project.property=This is the value of my property
my.project.anotherProperty=This is the value of my other property
</attribute>
-->
<attribute name="Properties">
gov.nih.nci.sdk.remote.catissuecore.securityLevel=0
gov.nih.nci.sdk.applications.session.timeout=3000
gov.nih.nci.security.configFile=@@app-security-file@@
app.propertiesFile=@@app-properties-file@@
app.domainAuthFilePath=@@auth-properties-file@@
bulkoperator.appservice.class=@@bulk-operation-properties-file@@
catissue.cdms.integration.class=@@catissue-cdms-integration-properties-file@@
app.customReportScriptDir=@@custom-report-script-dir@@
app.customGeneratedReportDir=@@custom-generated-report-dir@@
</attribute>
</mbean>
</server>