View Javadoc
1   /******************************************************************************
2    * RestDetailedVideo.java - Client facing domain object
3    * 
4    * BuckoVidLib - The BuckoSoft Video Library
5    * Copyright(c) 2015 - Dick Balaska
6    * 
7    */
8   package com.buckosoft.BuckoVidLib.domain.rest;
9   
10  import javax.xml.bind.annotation.XmlRootElement;
11  
12  /** Client facing TVSeason
13   * 
14   * @author dick
15   * @since 2015-05-17
16   *
17   */
18  @XmlRootElement(name="TVSeason")
19  public class RestTVSeason {
20  	private	int	episodeCount;
21  	private	String	title;
22  	private	String	hashKey;
23  
24  	/**
25  	 * @return the episodeCount
26  	 */
27  	public int getEpisodeCount() {
28  		return episodeCount;
29  	}
30  	/**
31  	 * @param episodeCount the episodeCount to set
32  	 */
33  	public void setEpisodeCount(int episodeCount) {
34  		this.episodeCount = episodeCount;
35  	}
36  	/**
37  	 * @return the title
38  	 */
39  	public String getTitle() {
40  		return title;
41  	}
42  	/**
43  	 * @param title the title to set
44  	 */
45  	public void setTitle(String title) {
46  		this.title = title;
47  	}
48  	/**
49  	 * @return the hashKey
50  	 */
51  	public String getHashKey() {
52  		return hashKey;
53  	}
54  	/**
55  	 * @param hashKey the hashKey to set
56  	 */
57  	public void setHashKey(String hashKey) {
58  		this.hashKey = hashKey;
59  	}
60  	
61  	
62  }