summaryrefslogtreecommitdiff
path: root/orkweb/src/net/sf/oreka/services/RecSegmentResult.java
diff options
context:
space:
mode:
Diffstat (limited to 'orkweb/src/net/sf/oreka/services/RecSegmentResult.java')
-rw-r--r--orkweb/src/net/sf/oreka/services/RecSegmentResult.java83
1 files changed, 83 insertions, 0 deletions
diff --git a/orkweb/src/net/sf/oreka/services/RecSegmentResult.java b/orkweb/src/net/sf/oreka/services/RecSegmentResult.java
new file mode 100644
index 0000000..fd43ad5
--- /dev/null
+++ b/orkweb/src/net/sf/oreka/services/RecSegmentResult.java
@@ -0,0 +1,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;
+ }
+
+
+
+
+
+}