forked from krishagni/openspecimen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSample-properties-service.xml
73 lines (53 loc) · 2.5 KB
/
Sample-properties-service.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<!-- $Id: Sample-properties-service.xml,v 1.4 2006/05/26 06:32:20 Kapil 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>
-->
<attribute name="Properties">
gov.nih.nci.sdk.remote.catissuecore.securityLevel = 0
gov.nih.nci.sdk.applications.session.timeout = 3000
<!--
Enter the absolute path of "ApplicationSecurityConfig.xml" file available at
{JBOSS_HOME}/server/default/catissuecore-properties directory.
Please note that the path must be separated by Unix style path separator "/".
-->
gov.nih.nci.security.configFile = E:/Program_Files/jboss-4.0.0/server/default/catissuecore-properties/ApplicationSecurityConfig.xml
<!--
Enter the absolute path of "caTissueCore_Properties.xml" file available at
{JBOSS_HOME}/server/default/catissuecore-properties directory.
Please note that the path must be separated by Unix style path separator "/".
-->
app.propertiesFile = E:/Program_Files/jboss-4.0.0/server/default/catissuecore-properties/caTissueCore_Properties.xml
</attribute>
</mbean>
</server>