/******************************************************************************
 * Role.java - Secondary domain object from plex
 * $Id: Role.java,v 1.1 2014/10/12 07:20:05 dick Exp $
 * 
 * BuckoVidLib - The BuckoSoft Video Library
 * Copyright(c) 2014 - Dick Balaska
 * 
 * $Log: Role.java,v $
 * Revision 1.1  2014/10/12 07:20:05  dick
 * Role object from plex.
 *
 */
package tv.plex.domain;

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

@XmlRootElement
public class Role {
	private	int		id;
	private	String	tag;
	private	String	role;
	private	String	thumb;

	/**
	 * @return the tag
	 */
	@XmlAttribute
	public String getTag() {
		return tag;
	}
	/**
	 * @param tag the tag to set
	 */
	public void setTag(String tag) {
		this.tag = tag;
	}
	/**
	 * @return the id
	 */
	@XmlAttribute
	public int getId() {
		return id;
	}
	/**
	 * @param id the id to set
	 */
	public void setId(int id) {
		this.id = id;
	}
	/**
	 * @return the role
	 */
	@XmlAttribute
	public String getRole() {
		return role;
	}
	/**
	 * @param role the role to set
	 */
	public void setRole(String role) {
		this.role = role;
	}
	/**
	 * @return the thumb
	 */
	@XmlAttribute
	public String getThumb() {
		return thumb;
	}
	/**
	 * @param thumb the thumb to set
	 */
	public void setThumb(String thumb) {
		this.thumb = thumb;
	}

}
