summaryrefslogtreecommitdiff
path: root/orkweb/src/net/sf/oreka/services/RecSegmentResult.java
blob: fd43ad5d72490bf2b5d84930d186174dd33d3063 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*
 * Oreka -- A media capture and retrieval platform
 * 
 * Copyright (C) 2005, orecx LLC
 *
 * http://www.orecx.com
 *
 * This program is free software, distributed under the terms of
 * the GNU General Public License.
 * Please refer to http://www.gnu.org/copyleft/gpl.html
 *
 */

/**
 * 
 */
package net.sf.oreka.services;

import net.sf.oreka.persistent.*;


public class RecSegmentResult {

	private RecSegment RecSegment;
	private RecTape RecTape;
	
	private String foo = "henri";

	public RecSegmentResult() {
		RecSegment = new RecSegment();
		RecTape = new RecTape();
	}

	/**
	 * @return Returns the recSegment.
	 */
	public RecSegment getRecSegment() {
		return RecSegment;
	}
	

	/**
	 * @param recSegment The recSegment to set.
	 */
	public void setRecSegment(RecSegment recSegment) {
		RecSegment = recSegment;
	}

	/**
	 * @return Returns the recTape.
	 */
	public RecTape getRecTape() {
		return RecTape;
	}
	

	/**
	 * @param recTape The recTape to set.
	 */
	public void setRecTape(RecTape recTape) {
		RecTape = recTape;
	}

	/**
	 * @return Returns the foo.
	 */
	public String getFoo() {
		return foo;
	}
	

	/**
	 * @param foo The foo to set.
	 */
	public void setFoo(String foo) {
		this.foo = foo;
	}
	
	

	

}