org.opendaylight.cardinal.impl.OdlCardinalMainModuleMBean Maven / Gradle / Ivy
The newest version!
/*
* Copyright © 2016 TCS 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.cardinal.impl;
//
// Generated by mibgen version 5.1 (03/08/07) when compiling ODL-CARDINAL-MIB in standard metadata mode.
//
// jmx imports
//
import com.sun.management.snmp.SnmpStatusException;
/**
* This interface is used for representing the remote management interface for
* the "OdlCardinalMainModule" MBean.
*/
public interface OdlCardinalMainModuleMBean {
/**
* Getter for the "OdlSystemOdlNodeInfo" variable.
*/
public String getOdlSystemOdlNodeInfo() throws SnmpStatusException;
/**
* Setter for the "OdlSystemOdlNodeInfo" variable.
*/
public void setOdlSystemOdlNodeInfo(String x) throws SnmpStatusException;
/**
* Checker for the "OdlSystemOdlNodeInfo" variable.
*/
public void checkOdlSystemOdlNodeInfo(String x) throws SnmpStatusException;
/**
* Getter for the "OdlSystemOdlUptime" variable.
*/
public String getOdlSystemOdlUptime() throws SnmpStatusException;
/**
* Setter for the "OdlSystemOdlUptime" variable.
*/
public void setOdlSystemOdlUptime(String x) throws SnmpStatusException;
/**
* Checker for the "OdlSystemOdlUptime" variable.
*/
public void checkOdlSystemOdlUptime(String x) throws SnmpStatusException;
/**
* Getter for the "OdlSystemSysInfo" variable.
*/
public String getOdlSystemSysInfo() throws SnmpStatusException;
/**
* Setter for the "OdlSystemSysInfo" variable.
*/
public void setOdlSystemSysInfo(String x) throws SnmpStatusException;
/**
* Checker for the "OdlSystemSysInfo" variable.
*/
public void checkOdlSystemSysInfo(String x) throws SnmpStatusException;
/**
* Getter for the "OdlSystemHostAddress" variable.
*/
public String getOdlSystemHostAddress() throws SnmpStatusException;
/**
* Setter for the "OdlSystemHostAddress" variable.
*/
public void setOdlSystemHostAddress(String x) throws SnmpStatusException;
/**
* Checker for the "OdlSystemHostAddress" variable.
*/
public void checkOdlSystemHostAddress(String x) throws SnmpStatusException;
/**
* Getter for the "OdlSystemMemUsage" variable.
*/
public Integer getOdlSystemMemUsage() throws SnmpStatusException;
/**
* Setter for the "OdlSystemMemUsage" variable.
*/
public void setOdlSystemMemUsage(Integer x) throws SnmpStatusException;
/**
* Checker for the "OdlSystemMemUsage" variable.
*/
public void checkOdlSystemMemUsage(Integer x) throws SnmpStatusException;
/**
* Getter for the "OdlSystemCpuUsage" variable.
*/
public Integer getOdlSystemCpuUsage() throws SnmpStatusException;
/**
* Setter for the "OdlSystemCpuUsage" variable.
*/
public void setOdlSystemCpuUsage(Integer x) throws SnmpStatusException;
/**
* Checker for the "OdlSystemCpuUsage" variable.
*/
public void checkOdlSystemCpuUsage(Integer x) throws SnmpStatusException;
}