View Javadoc
1   /******************************************************************************
2    * Location.java - Primary domain object from plex
3    * $Id: Location.java,v 1.2 2014/10/12 07:21:10 dick Exp $
4    * 
5    * BuckoVidLib - The BuckoSoft Video Library
6    * Copyright(c) 2014 - Dick Balaska
7    * 
8    * $Log: Location.java,v $
9    * Revision 1.2  2014/10/12 07:21:10  dick
10   * whitespace.
11   *
12   * Revision 1.1  2014/10/04 16:17:53  dick
13   * plex domain objects.
14   */
15  package tv.plex.domain;
16  
17  import javax.xml.bind.annotation.XmlAttribute;
18  import javax.xml.bind.annotation.XmlRootElement;
19  
20  @XmlRootElement
21  public class Location {
22  	private	String	id;
23  	private	String	path;
24  	/**
25  	 * @return the id
26  	 */
27  	@XmlAttribute
28  	public String getId() {
29  		return id;
30  	}
31  	/**
32  	 * @param id the id to set
33  	 */
34  	public void setId(String id) {
35  		this.id = id;
36  	}
37  	/**
38  	 * @return the path
39  	 */
40  	@XmlAttribute
41  	public String getPath() {
42  		return path;
43  	}
44  	/**
45  	 * @param path the path to set
46  	 */
47  	public void setPath(String path) {
48  		this.path = path;
49  	}
50  
51  }