View Javadoc
1   /******************************************************************************
2    * Writer.java - Secondary domain object from plex
3    * $Id: Writer.java,v 1.1 2014/10/12 07:20:32 dick Exp $
4    * 
5    * BuckoVidLib - The BuckoSoft Video Library
6    * Copyright(c) 2014 - Dick Balaska
7    * 
8    * $Log: Writer.java,v $
9    * Revision 1.1  2014/10/12 07:20:32  dick
10   * Write 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="Writer")
19  public class Writer {
20  	private	int		id;
21  	private	String	tag;
22  
23  	/**
24  	 * @return the id
25  	 */
26  	@XmlAttribute
27  	public int getId() {
28  		return id;
29  	}
30  	/**
31  	 * @param id the id to set
32  	 */
33  	public void setId(int id) {
34  		this.id = id;
35  	}
36  	/**
37  	 * @return the tag
38  	 */
39  	@XmlAttribute
40  	public String getTag() {
41  		return tag;
42  	}
43  
44  	/**
45  	 * @param tag the tag to set
46  	 */
47  	public void setTag(String tag) {
48  		this.tag = tag;
49  	}
50  	
51  
52  }