View Javadoc
1   /******************************************************************************
2    * FailedToRip.java - One record in the failedtorip table of the database
3    * $Id: FailedToRip.java,v 1.1 2014/10/17 08:12:10 dick Exp $
4    * 
5    * BuckoVidLib - The BuckoSoft Video Library
6    * Copyright(c) 2014 - Dick Balaska
7    * 
8    * $Log: FailedToRip.java,v $
9    * Revision 1.1  2014/10/17 08:12:10  dick
10   * Add the database and getFailedToRip().
11   *
12   */
13  package com.buckosoft.BuckoVidLib.domain;
14  
15  import java.util.Date;
16  
17  import javax.xml.bind.annotation.XmlRootElement;
18  
19  /** One record in the failedtorip table of the database.
20   * @author dick
21   * @since 2014-10-17
22   */
23  @XmlRootElement(name="FailedToRip")
24  public class FailedToRip {
25  	private	int		id;
26  	private	String	name;
27  	private	String	comment;
28  	private	Date	date;
29  	/**
30  	 * @return the id
31  	 */
32  	public int getId() {
33  		return id;
34  	}
35  	/**
36  	 * @param id the id to set
37  	 */
38  	public void setId(int id) {
39  		this.id = id;
40  	}
41  	/**
42  	 * @return the name
43  	 */
44  	public String getName() {
45  		return name;
46  	}
47  	/**
48  	 * @param name the name to set
49  	 */
50  	public void setName(String name) {
51  		this.name = name;
52  	}
53  	/**
54  	 * @return the comment
55  	 */
56  	public String getComment() {
57  		return comment;
58  	}
59  	/**
60  	 * @param comment the comment to set
61  	 */
62  	public void setComment(String comment) {
63  		this.comment = comment;
64  	}
65  	/**
66  	 * @return the date
67  	 */
68  	public Date getDate() {
69  		return date;
70  	}
71  	/**
72  	 * @param date the date to set
73  	 */
74  	public void setDate(Date date) {
75  		this.date = date;
76  	}
77  	
78  }