forked from NASAWorldWind/WorldWindJava
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworldwindx.jnlp
More file actions
44 lines (38 loc) · 1.38 KB
/
worldwindx.jnlp
File metadata and controls
44 lines (38 loc) · 1.38 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
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (C) 2012 United States Government as represented by the Administrator of the
~ National Aeronautics and Space Administration.
~ All Rights Reserved.
-->
<jnlp spec="1.0+" codebase="" href="worldwindx.jnlp">
<!--
Provides a description of the WorldWind SDK extensions library.
-->
<information>
<title>NASA WorldWind Java Extensions</title>
<vendor>NASA</vendor>
<homepage href="https://worldwind.arc.nasa.gov"/>
<offline-allowed/>
</information>
<!--
Requests a trusted application environment. The WorldWind SDK extensions library requires access to the network
and the local filesystem. All WorldWind JAR files are signed with a digital signature associated with NASA.
-->
<security>
<all-permissions/>
</security>
<!--
Specifies the resources required by the WorldWind SDK extensions library:
* WorldWind extensions JAR file.
* WorldWind core Java Web Start component.
-->
<resources>
<jar href="worldwindx.jar"/>
<extension name="worldwind" href="worldwind.jnlp"/>
</resources>
<!--
Indicates that this Java Web Start file describes a component. This element is intentionally left blank, since
it is used only as an indicator.
-->
<component-desc/>
</jnlp>