BUG-2218: Keep existing link augmentations during discovery process
[controller.git] / opendaylight / northbound / commons / src / test / java / org / opendaylight / controller / northbound / commons / query / Library.java
1 /**
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.northbound.commons.query;
9
10 import java.util.List;
11
12 import javax.xml.bind.annotation.XmlElement;
13 import javax.xml.bind.annotation.XmlRootElement;
14
15 @XmlRootElement(name="library")
16 public class Library {
17
18     @XmlElement(name="book")
19     private final List<BookBean> _list;
20
21     public Library(List<BookBean> list) {
22         _list = list;
23     }
24
25     public List<BookBean> getList() {
26         return _list;
27     }
28
29 }