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

com.emc.vipr.model.sys.healthmonitor.DiagRequestParams 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.XmlRootElement;

/**
 * Request parameters for diagnostics API.
 */
@XmlRootElement
public class DiagRequestParams {

    private boolean verbose;

    public DiagRequestParams() {
    }

    public DiagRequestParams(boolean verbose) {
        this.verbose = verbose;
    }

    public boolean isVerbose() {
        return verbose;
    }

    public void setVerbose(boolean verbose) {
        this.verbose = verbose;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy