blob: a2d5a9ea91785dc626dd42152db33b78974afd29 [file] [log] [blame]
<%--
~ Licensed to the Apache Software Foundation (ASF) under one
~ or more contributor license agreements. See the NOTICE file
~ distributed with this work for additional information
~ regarding copyright ownership. The ASF licenses this file
~ to you under the Apache License, Version 2.0 (the
~ "License"); you may not use this file except in compliance
~ with the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing,
~ software distributed under the License is distributed on an
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
~ KIND, either express or implied. See the License for the
~ specific language governing permissions and limitations
~ under the License.
--%>
<%@ page contentType="application/x-java-jnlp-file" %>
<?xml version="1.0" encoding="utf-8"?>
<!-- JNLP File for JSecurity Sample Application -->
<jnlp spec="1.0+" codebase="${codebaseUrl}">
<information>
<title>JSecurity Sample Application</title>
<vendor>JSecurity</vendor>
<homepage href="http://www.jsecurity.org"/>
<description>JSecurity Sample Application</description>
<description kind="short">A webstart application used to demonstrate JSecurity session and security
management.
</description>
<icon kind="splash" href="logo.png"/>
<offline-allowed/>
</information>
<security>
<all-permissions/>
</security>
<resources>
<j2se version="1.5"/>
<jar href="jsecurity-spring-sample.jar"/>
<jar href="jsecurity.jar"/>
<jar href="spring.jar"/>
<jar href="slf4j-api.jar"/>
<property name="jsecurity.session.id" value="${sessionId}"/>
</resources>
<application-desc main-class="org.jsecurity.samples.spring.ui.WebStartDriver"/>
</jnlp>