/******************************************************************************
 * Location.java - Primary domain object from plex
 * $Id: Location.java,v 1.2 2014/10/12 07:21:10 dick Exp $
 * 
 * BuckoVidLib - The BuckoSoft Video Library
 * Copyright(c) 2014 - Dick Balaska
 * 
 * $Log: Location.java,v $
 * Revision 1.2  2014/10/12 07:21:10  dick
 * whitespace.
 *
 * Revision 1.1  2014/10/04 16:17:53  dick
 * plex domain objects.
 */
package tv.plex.domain;

import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement
public class Location {
	private	String	id;
	private	String	path;
	/**
	 * @return the id
	 */
	@XmlAttribute
	public String getId() {
		return id;
	}
	/**
	 * @param id the id to set
	 */
	public void setId(String id) {
		this.id = id;
	}
	/**
	 * @return the path
	 */
	@XmlAttribute
	public String getPath() {
		return path;
	}
	/**
	 * @param path the path to set
	 */
	public void setPath(String path) {
		this.path = path;
	}

}
