All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.emc.vipr.model.sys.healthmonitor.StatsRestRep Maven / Gradle / Ivy

There is a newer version: 3.5.0.0
Show newest version
/*
 * Copyright (c) 2013 EMC Corporation
 * All Rights Reserved
 */
package com.emc.vipr.model.sys.healthmonitor;

import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementWrapper;
import javax.xml.bind.annotation.XmlRootElement;
import java.util.ArrayList;
import java.util.List;

/**
 * Represents node and its services statistics
 */
@XmlRootElement(name = "stats")
public class StatsRestRep {

    private List nodeStatsList;

    @XmlElementWrapper(name = "node_stats_list")
    @XmlElement(name = "node_stats")
    public List getNodeStatsList() {
        if (nodeStatsList == null) {
            nodeStatsList = new ArrayList();
        }
        return nodeStatsList;
    }

    public void setNodeStatsList(List nodeStatsList) {
        this.nodeStatsList = nodeStatsList;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy