View Javadoc

1   /**
2    * 
3    */
4   package org.wvc.config.xml.pojos;
5   
6   import com.thoughtworks.xstream.annotations.XStreamAlias;
7   import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
8   
9   /**
10   * Initial screen tag.
11   * 
12   * @author julian
13   *
14   */
15  @XStreamAlias("initialScreen")
16  public class InitialScreen {
17  
18  	/**
19  	 * Initial screen id.
20  	 */
21  	@XStreamAlias("id")
22  	@XStreamAsAttribute
23  	private String id;
24  
25  	/**
26  	 * @param id
27  	 */
28  	public InitialScreen(String id) {
29  		super();
30  		this.id = id;
31  	}
32  
33  	/**
34  	 * @return the id
35  	 */
36  	public String getId() {
37  		return id;
38  	}	
39  	
40  }