<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:wicket="http://wicket.apache.org">
<head>
<title>Wicket Examples - stateless</title>
</head>
<body>
<wicket:extend>
<span wicket:id="message" id="message">Message goes here</span>
<br />
<a wicket:id="indexLink" href="#">go to index</a>
<form wicket:id="statelessform">
<input type="text" wicket:id="textfield" />
<input type="submit" />
</form>
<p>
This page is stateless as it doesn't have any callbacks (like statefull links or forms).
If a page doesn't have any, there is no use keeping it around in the
session. Furthermore, as long as you don't have any stateful pages,
the actual session creation will be deferred. A Wicket session object
is available, but is a temporary one.
</p>
<p>
<span wicket:id="feedback" />
</p>
</wicket:extend>
</body>
</html>