// 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 ip mib object in RFC1213_MIB
 */
public interface IpGroupMBean extends SnmpBaseGroupMBean
{
    /**
     * Gets new ipForwarding value
     */
    public int getIpForwarding();
    
    /**
     * Sets new ipForwarding value
     * @param value the new value
     */
    public void setIpForwarding(int value);
    
    /**
     * Gets new ipDefaultTTL value
     */
    public int getIpDefaultTTL();
    
    /**
     * Sets new ipDefaultTTL value
     * @param value the new value
     */
    public void setIpDefaultTTL(int value);
    
    /**
     * Gets new ipInReceives value
     */
    public SnmpCounter32 getIpInReceives();
    
    /**
     * Gets new ipInHdrErrors value
     */
    public SnmpCounter32 getIpInHdrErrors();
    
    /**
     * Gets new ipInAddrErrors value
     */
    public SnmpCounter32 getIpInAddrErrors();
    
    /**
     * Gets new ipForwDatagrams value
     */
    public SnmpCounter32 getIpForwDatagrams();
    
    /**
     * Gets new ipInUnknownProtos value
     */
    public SnmpCounter32 getIpInUnknownProtos();
    
    /**
     * Gets new ipInDiscards value
     */
    public SnmpCounter32 getIpInDiscards();
    
    /**
     * Gets new ipInDelivers value
     */
    public SnmpCounter32 getIpInDelivers();
    
    /**
     * Gets new ipOutRequests value
     */
    public SnmpCounter32 getIpOutRequests();
    
    /**
     * Gets new ipOutDiscards value
     */
    public SnmpCounter32 getIpOutDiscards();
    
    /**
     * Gets new ipOutNoRoutes value
     */
    public SnmpCounter32 getIpOutNoRoutes();
    
    /**
     * Gets new ipReasmTimeout value
     */
    public int getIpReasmTimeout();
    
    /**
     * Gets new ipReasmReqds value
     */
    public SnmpCounter32 getIpReasmReqds();
    
    /**
     * Gets new ipReasmOKs value
     */
    public SnmpCounter32 getIpReasmOKs();
    
    /**
     * Gets new ipReasmFails value
     */
    public SnmpCounter32 getIpReasmFails();
    
    /**
     * Gets new ipFragOKs value
     */
    public SnmpCounter32 getIpFragOKs();
    
    /**
     * Gets new ipFragFails value
     */
    public SnmpCounter32 getIpFragFails();
    
    /**
     * Gets new ipFragCreates value
     */
    public SnmpCounter32 getIpFragCreates();
    
    /**
     * Gets new ipRoutingDiscards value
     */
    public SnmpCounter32 getIpRoutingDiscards();
    
}