X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fnorthbound%2Fcontainermanager%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcontainermanager%2Fnorthbound%2FContainerConfigs.java;fp=opendaylight%2Fnorthbound%2Fcontainermanager%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcontainermanager%2Fnorthbound%2FContainerConfigs.java;h=eecc19f2167b71a77d5c381a99bb365dd6b28ed7;hb=5ec563c2e47e7e104223bbad155f9f3f0fadd38b;hp=0000000000000000000000000000000000000000;hpb=9092f24a69c54a4512cb1cdbb4ca2c3734a087d5;p=controller.git diff --git a/opendaylight/northbound/containermanager/src/main/java/org/opendaylight/controller/containermanager/northbound/ContainerConfigs.java b/opendaylight/northbound/containermanager/src/main/java/org/opendaylight/controller/containermanager/northbound/ContainerConfigs.java new file mode 100644 index 0000000000..eecc19f216 --- /dev/null +++ b/opendaylight/northbound/containermanager/src/main/java/org/opendaylight/controller/containermanager/northbound/ContainerConfigs.java @@ -0,0 +1,48 @@ + +/* + * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + + +package org.opendaylight.controller.containermanager.northbound; + +import java.util.List; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; + +import org.opendaylight.controller.containermanager.ContainerConfig; + + +@XmlRootElement(name = "container-config-list") +@XmlAccessorType(XmlAccessType.NONE) +public class ContainerConfigs { + @XmlElement(name = "container-config") + List containerConfig; + + //To satisfy JAXB + @SuppressWarnings("unused") + private ContainerConfigs() { + + } + + + public ContainerConfigs(List containerconfig) { + this.containerConfig = containerconfig; + } + + + public List getcontainerConfig() { + return containerConfig; + } + + public void setcontainerConfig(List containerConfig) { + this.containerConfig = containerConfig; + } +}