View Javadoc
1   /******************************************************************************
2    * Genre.java - Secondary domain object from plex
3    * $Id: Genre.java,v 1.1 2014/10/12 07:19:52 dick Exp $
4    * 
5    * BuckoVidLib - The BuckoSoft Video Library
6    * Copyright(c) 2014 - Dick Balaska
7    * 
8    * $Log: Genre.java,v $
9    * Revision 1.1  2014/10/12 07:19:52  dick
10   * Genre object from plex.
11   *
12   */
13  package tv.plex.domain;
14  
15  import javax.xml.bind.annotation.XmlAttribute;
16  import javax.xml.bind.annotation.XmlRootElement;
17  
18  @XmlRootElement(name="Genre")
19  public class Genre {
20  	private	String	tag;
21  
22  	/**
23  	 * @return the tag
24  	 */
25  	@XmlAttribute
26  	public String getTag() {
27  		return tag;
28  	}
29  
30  	/**
31  	 * @param tag the tag to set
32  	 */
33  	public void setTag(String tag) {
34  		this.tag = tag;
35  	}
36  	
37  }