// Home | Go Back //

/*
 * Copyright (c) 2002-2003 iReasoning Inc. All Rights Reserved.
 * 
 * This SOURCE CODE FILE, which has been provided by iReasoning Inc. as part
 * of an iReasoning Software product for use ONLY by licensed users of the product,
 * includes CONFIDENTIAL and PROPRIETARY information of iReasoning Inc.  
 *
 * USE OF THIS SOFTWARE IS GOVERNED BY THE TERMS AND CONDITIONS 
 * OF THE LICENSE STATEMENT AND LIMITED WARRANTY FURNISHED WITH
 * THE PRODUCT.
 *
 * IN PARTICULAR, YOU WILL INDEMNIFY AND HOLD IREASONING SOFTWARE, ITS
 * RELATED COMPANIES AND ITS SUPPLIERS, HARMLESS FROM AND AGAINST ANY
 * CLAIMS OR LIABILITIES ARISING OUT OF THE USE, REPRODUCTION, OR
 * DISTRIBUTION OF YOUR PROGRAMS, INCLUDING ANY CLAIMS OR LIABILITIES
 * ARISING OUT OF OR RESULTING FROM THE USE, MODIFICATION, OR
 * DISTRIBUTION OF PROGRAMS OR FILES CREATED FROM, BASED ON, AND/OR
 * DERIVED FROM THIS SOURCE CODE FILE.
 */

package agent.mib2jni;
import java.io.*;
import java.util.*;
import com.ireasoning.util.*;
import com.ireasoning.protocol.snmp.*;
import javax.management.*;

/**
 * Interface represents icmp mib object in RFC1213_MIB
 */
public interface IcmpGroupMBean extends SnmpBaseGroupMBean
{
    /**
     * Gets new icmpInMsgs value
     */
    public SnmpCounter32 getIcmpInMsgs();
    
    /**
     * Gets new icmpInErrors value
     */
    public SnmpCounter32 getIcmpInErrors();
    
    /**
     * Gets new icmpInDestUnreachs value
     */
    public SnmpCounter32 getIcmpInDestUnreachs();
    
    /**
     * Gets new icmpInTimeExcds value
     */
    public SnmpCounter32 getIcmpInTimeExcds();
    
    /**
     * Gets new icmpInParmProbs value
     */
    public SnmpCounter32 getIcmpInParmProbs();
    
    /**
     * Gets new icmpInSrcQuenchs value
     */
    public SnmpCounter32 getIcmpInSrcQuenchs();
    
    /**
     * Gets new icmpInRedirects value
     */
    public SnmpCounter32 getIcmpInRedirects();
    
    /**
     * Gets new icmpInEchos value
     */
    public SnmpCounter32 getIcmpInEchos();
    
    /**
     * Gets new icmpInEchoReps value
     */
    public SnmpCounter32 getIcmpInEchoReps();
    
    /**
     * Gets new icmpInTimestamps value
     */
    public SnmpCounter32 getIcmpInTimestamps();
    
    /**
     * Gets new icmpInTimestampReps value
     */
    public SnmpCounter32 getIcmpInTimestampReps();
    
    /**
     * Gets new icmpInAddrMasks value
     */
    public SnmpCounter32 getIcmpInAddrMasks();
    
    /**
     * Gets new icmpInAddrMaskReps value
     */
    public SnmpCounter32 getIcmpInAddrMaskReps();
    
    /**
     * Gets new icmpOutMsgs value
     */
    public SnmpCounter32 getIcmpOutMsgs();
    
    /**
     * Gets new icmpOutErrors value
     */
    public SnmpCounter32 getIcmpOutErrors();
    
    /**
     * Gets new icmpOutDestUnreachs value
     */
    public SnmpCounter32 getIcmpOutDestUnreachs();
    
    /**
     * Gets new icmpOutTimeExcds value
     */
    public SnmpCounter32 getIcmpOutTimeExcds();
    
    /**
     * Gets new icmpOutParmProbs value
     */
    public SnmpCounter32 getIcmpOutParmProbs();
    
    /**
     * Gets new icmpOutSrcQuenchs value
     */
    public SnmpCounter32 getIcmpOutSrcQuenchs();
    
    /**
     * Gets new icmpOutRedirects value
     */
    public SnmpCounter32 getIcmpOutRedirects();
    
    /**
     * Gets new icmpOutEchos value
     */
    public SnmpCounter32 getIcmpOutEchos();
    
    /**
     * Gets new icmpOutEchoReps value
     */
    public SnmpCounter32 getIcmpOutEchoReps();
    
    /**
     * Gets new icmpOutTimestamps value
     */
    public SnmpCounter32 getIcmpOutTimestamps();
    
    /**
     * Gets new icmpOutTimestampReps value
     */
    public SnmpCounter32 getIcmpOutTimestampReps();
    
    /**
     * Gets new icmpOutAddrMasks value
     */
    public SnmpCounter32 getIcmpOutAddrMasks();
    
    /**
     * Gets new icmpOutAddrMaskReps value
     */
    public SnmpCounter32 getIcmpOutAddrMaskReps();
    
}