View Javadoc
1   /******************************************************************************
2    * VideoTexts.java - domain object
3    * $Id: VideoTexts.java,v 1.1 2015/04/12 09:11:29 dick Exp $
4    * 
5    * BuckoVidLib - The BuckoSoft Video Library
6    * Copyright(c) 2015 - Dick Balaska
7    * 
8    * $Log: VideoTexts.java,v $
9    * Revision 1.1  2015/04/12 09:11:29  dick
10   * Separate the lengthy texts from the base Video object.
11   *
12   */
13  package com.buckosoft.BuckoVidLib.domain;
14  
15  /** Separate the lengthy texts from the base Video object.
16   * @author dick
17   * @since 2015-04-12
18   */
19  public class VideoTexts {
20  	private	int		videoId;
21  	private	String	tagline;
22  	private	String	summary;
23  
24  	public VideoTexts() {}
25  	
26  	public VideoTexts(String tagline, String summary) {
27  		this.tagline = tagline;
28  		this.summary = summary;
29  	}
30  
31  	/**
32  	 * @return the videoId
33  	 */
34  	public int getVideoId() {
35  		return videoId;
36  	}
37  	/**
38  	 * @param videoId the videoId to set
39  	 */
40  	public void setVideoId(int videoId) {
41  		this.videoId = videoId;
42  	}
43  	/**
44  	 * @return the tagline
45  	 */
46  	public String getTagline() {
47  		return tagline;
48  	}
49  	/**
50  	 * @param tagline the tagline to set
51  	 */
52  	public void setTagline(String tagline) {
53  		this.tagline = tagline;
54  	}
55  
56  	/**
57  	 * @return the summary
58  	 */
59  	public String getSummary() {
60  		return summary;
61  	}
62  
63  	/**
64  	 * @param summary the summary to set
65  	 */
66  	public void setSummary(String summary) {
67  		this.summary = summary;
68  	}
69  
70  }