BUG 2302 : odl-clustering-test-app should not be part of the odl-restconf-all feature set
[controller.git] / opendaylight / northbound / containermanager / src / main / java / org / opendaylight / controller / containermanager / northbound / ContainerConfigs.java
1
2 /*
3  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
4  *
5  * This program and the accompanying materials are made available under the
6  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  * and is available at http://www.eclipse.org/legal/epl-v10.html
8  */
9
10
11 package org.opendaylight.controller.containermanager.northbound;
12
13 import java.util.List;
14
15 import javax.xml.bind.annotation.XmlAccessType;
16 import javax.xml.bind.annotation.XmlAccessorType;
17 import javax.xml.bind.annotation.XmlElement;
18 import javax.xml.bind.annotation.XmlRootElement;
19
20 import org.opendaylight.controller.containermanager.ContainerConfig;
21
22
23 @XmlRootElement(name = "containerConfig-list")
24 @XmlAccessorType(XmlAccessType.NONE)
25 public class ContainerConfigs {
26         @XmlElement(name = "containerConfig")
27     List<ContainerConfig> containerConfig;
28
29     //To satisfy JAXB
30     @SuppressWarnings("unused")
31     private ContainerConfigs() {
32
33     }
34
35
36     public ContainerConfigs(List<ContainerConfig> containerconfig) {
37         this.containerConfig = containerconfig;
38     }
39
40
41     public List<ContainerConfig> getcontainerConfig() {
42         return containerConfig;
43     }
44
45     public void setcontainerConfig(List<ContainerConfig> containerConfig) {
46         this.containerConfig = containerConfig;
47     }
48 }