View Javadoc
1   /******************************************************************************
2    * Director.java - Secondary domain object from plex
3    * $Id: Director.java,v 1.1 2014/10/12 07:19:32 dick Exp $
4    * 
5    * BuckoVidLib - The BuckoSoft Video Library
6    * Copyright(c) 2014 - Dick Balaska
7    * 
8    * $Log: Director.java,v $
9    * Revision 1.1  2014/10/12 07:19:32  dick
10   * Director 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="Director")
19  public class Director {
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  }