X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fstatistics-manager%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fmd%2Fstatistics%2Fmanager%2FNodeStatistics.java;h=0cc7beb356a38a508a1cdd52138f88b4a45a4a0c;hb=a4f760dabea4b4387b9f3f0090e0768432c4a2e5;hp=8507324b571e6bd2d10b48457c73de37e13aaef0;hpb=7e9c91c57da1cac389e8234b738219a5fe671c36;p=controller.git diff --git a/opendaylight/md-sal/statistics-manager/src/main/java/org/opendaylight/controller/md/statistics/manager/NodeStatistics.java b/opendaylight/md-sal/statistics-manager/src/main/java/org/opendaylight/controller/md/statistics/manager/NodeStatistics.java index 8507324b57..0cc7beb356 100644 --- a/opendaylight/md-sal/statistics-manager/src/main/java/org/opendaylight/controller/md/statistics/manager/NodeStatistics.java +++ b/opendaylight/md-sal/statistics-manager/src/main/java/org/opendaylight/controller/md/statistics/manager/NodeStatistics.java @@ -1,28 +1,37 @@ +/* + * Copyright IBM Corporation, 2013. 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.md.statistics.manager; import java.util.List; -import org.opendaylight.yang.gen.v1.urn.opendaylight.group.statistics.rev131111.group.desc.response.GroupDescStats; -import org.opendaylight.yang.gen.v1.urn.opendaylight.group.statistics.rev131111.group.stats.response.GroupStatistics; +import org.opendaylight.yang.gen.v1.urn.opendaylight.group.statistics.rev131111.nodes.node.GroupFeatures; +import org.opendaylight.yang.gen.v1.urn.opendaylight.group.types.rev131018.group.desc.stats.reply.GroupDescStats; +import org.opendaylight.yang.gen.v1.urn.opendaylight.group.types.rev131018.group.statistics.reply.GroupStats; import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodeRef; -import org.opendaylight.yang.gen.v1.urn.opendaylight.meter.statistics.rev131111.meter.config.response.MeterConfigStats; -import org.opendaylight.yang.gen.v1.urn.opendaylight.meter.statistics.rev131111.meter.stats.response.MeterStatistics; +import org.opendaylight.yang.gen.v1.urn.opendaylight.meter.statistics.rev131111.nodes.node.MeterFeatures; +import org.opendaylight.yang.gen.v1.urn.opendaylight.meter.types.rev130918.meter.config.stats.reply.MeterConfigStats; +import org.opendaylight.yang.gen.v1.urn.opendaylight.meter.types.rev130918.meter.statistics.reply.MeterStats; public class NodeStatistics { private NodeRef targetNode; - private List groupStatistics; + private List groupStatistics; - private List meterStatistics; + private List meterStatistics; private List groupDescStats; private List meterConfigStats; - private List groupFeatures; + private GroupFeatures groupFeatures; - private List meterFeatures; + private MeterFeatures meterFeatures; public NodeStatistics(){ @@ -36,19 +45,19 @@ public class NodeStatistics { this.targetNode = targetNode; } - public List getGroupStatistics() { + public List getGroupStatistics() { return groupStatistics; } - public void setGroupStatistics(List groupStatistics) { + public void setGroupStatistics(List groupStatistics) { this.groupStatistics = groupStatistics; } - public List getMeterStatistics() { + public List getMeterStatistics() { return meterStatistics; } - public void setMeterStatistics(List meterStatistics) { + public void setMeterStatistics(List meterStatistics) { this.meterStatistics = meterStatistics; } @@ -68,21 +77,19 @@ public class NodeStatistics { this.meterConfigStats = meterConfigStats; } - public List getGroupFeatures() { + public GroupFeatures getGroupFeatures() { return groupFeatures; } - public void setGroupFeatures( - List groupFeatures) { + public void setGroupFeatures(GroupFeatures groupFeatures) { this.groupFeatures = groupFeatures; } - public List getMeterFeatures() { + public MeterFeatures getMeterFeatures() { return meterFeatures; } - public void setMeterFeatures( - List meterFeatures) { + public void setMeterFeatures(MeterFeatures meterFeatures) { this.meterFeatures = meterFeatures; }