blob: b4e948924d0c0f005baac5ddabc92a5e2b5fbab2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?xml version="1.0" encoding="utf-8"?>
<jnlp spec="1.0"
codebase="./"
href="ReadPropertiesBySignedHack.jnlp">
<information>
<title>read properties using System.getenv()</title>
<vendor>Red Hat</vendor>
</information>
<resources>
<jar href="ReadPropertiesBySignedHack.jar" main="true"/>
<jar href="ReadProperties.jar" main="false" download="lazy"/>
</resources>
<application-desc main-class="ReadPropertiesBySignedHack">
<argument>user.name</argument>
</application-desc>
<security>
<all-permissions/>
</security>
</jnlp>
|