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