1
2
3
4
5
6
7
8
9
10
11
12
13 package com.buckosoft.BuckoVidLib.domain.rest;
14
15 import java.util.List;
16
17 import javax.xml.bind.annotation.XmlAccessType;
18 import javax.xml.bind.annotation.XmlAccessorType;
19 import javax.xml.bind.annotation.XmlElement;
20 import javax.xml.bind.annotation.XmlRootElement;
21
22
23
24
25
26 @XmlRootElement(name = "Videos")
27 @XmlAccessorType(XmlAccessType.FIELD)
28 public class RestVideos {
29 @XmlElement(name="Video")
30 private List<RestVideo> videos;
31
32
33
34
35 public List<RestVideo> getVideos() {
36 return videos;
37 }
38
39
40
41
42 public void setVideos(List<RestVideo> videos) {
43 this.videos = videos;
44 }
45
46
47 }