Source code: org/acs/damsel/srvr/user/SlideShow.java
1 package org.acs.damsel.srvr.user;
2
3 import java.util.*;
4
5 import org.acs.damsel.srvr.collection.*;
6
7 /**
8 * <p>Title: SlideShow</p>
9 * <p>Description: Each instance of the SlideShow class represents a single
10 * SlideShow stored in the database. Instances maintain a CollectionView of
11 * all of the assets in the SlideShow, as well as the slideshow name, ownerName,
12 * permissionId, delay between slides, and a vector of tags to be display.</p>
13 * @version 1.0
14 */
15 public class SlideShow {
16 private CollectionView assets;
17 private String name;
18 private String ownerName;
19 private String permissionID;
20 private String delay;
21 private Vector tags;
22
23 public SlideShow() {
24 }
25
26 /* Getter and setter methods */
27 public CollectionView getAssets() {
28 return assets;
29 }
30 public void setAssets(CollectionView assets) {
31 this.assets = assets;
32 }
33 public Vector getTags() {
34 return tags;
35 }
36 public void setTags(Vector tags) {
37 this.tags = tags;
38 }
39 public String getDelay() {
40 return delay;
41 }
42 public void setDelay(String delay) {
43 this.delay = delay;
44 }
45 public String getName() {
46 return name;
47 }
48 public void setName(String name) {
49 this.name = name;
50 }
51 public String getOwnerName() {
52 return ownerName;
53 }
54 public void setOwnerName(String ownerName) {
55 this.ownerName = ownerName;
56 }
57 public String getPermissionID() {
58 return permissionID;
59 }
60 public void setPermissionID(String permissionID) {
61 this.permissionID = permissionID;
62 }
63
64 }