4A Server -  2.0
 All Classes Namespaces Files Functions Variables Enumerator
Index.java
Go to the documentation of this file.
1 /*
2  * Project: Server for annotations sharing
3  * Author: Ing. Jaroslav Dytrych idytrych@fit.vutbr.cz
4  * File: Index.java
5  * Description: Backbean for index page
6  */
7 
8 /**
9  * @file Index.java
10  *
11  * @brief Backbean for index page
12  */
13 
14 /**
15  * @package cz.vutbr.fit.knot.annotations.web
16  *
17  * @brief Administration interface backbeans
18  */
19 package cz.vutbr.fit.knot.annotations.web;
20 
21 import java.io.Serializable;
22 import javax.faces.bean.ManagedBean;
23 import javax.faces.bean.SessionScoped;
24 
25 /**
26  * Backbean for index page
27  *
28  * @brief Backbean for index page
29  * @author idytrych
30  */
31 @ManagedBean
32 @SessionScoped
33 public class Index implements Serializable {
34 
35  /**
36  * Creates a new instance of Index
37  */
38  public Index() {
39  }
40 
41 } // public class Index
Backbean for index page.
Definition: Index.java:33