blob: 9006719c6ca878c96532308b2a7e55a5cebf0a6e [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 Ki Sample Application -->
<jnlp spec="1.0+" codebase="${codebaseUrl}">
<information>
<title>Apache Ki Sample Application</title>
<vendor>Apache Ki</vendor>
<homepage href="http://ki.apache.org"/>
<description>Apache Ki Sample Application</description>
<description kind="short">A webstart application used to demonstrate Apache Ki 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="ki-spring-sample.jar"/>
<jar href="ki-all.jar"/>
<jar href="spring.jar"/>
<jar href="slf4j-api.jar"/>
<property name="ki.session.id" value="${sessionId}"/>
</resources>
<application-desc main-class="org.apache.ki.samples.spring.ui.WebStartDriver"/>
</jnlp>