blob: 1b26ef44b6ced1a0e2babdbfd3476c5d693b8151 [file] [log] [blame]
/*
* $Id$
* $Revision$ $Date$
*
* ==================================================================== Licensed
* 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.
*/
package wicket.examples.hangman;
import wicket.protocol.http.WebApplication;
import wicket.protocol.http.WebSession;
/**
* Session for hangman game.
*
* @author Jonathan Locke
*/
public class HangmanSession extends WebSession
{
/** The game */
private final Game game = new Game();
/**
* Constructor
*
* @param application
*/
protected HangmanSession(final WebApplication application)
{
super(application);
}
/**
* @return Returns the game.
*/
public Game getGame()
{
return game;
}
}