// 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 ipRouteTable MIB object in RFC1213_MIB
 */
public interface IpRouteTableMBean extends SnmpTableMBean
{
    /**
     * Gets ipRouteDest value
     * @param ipRouteEntry table entry object
     */
    public SnmpIpAddress getIpRouteDest(SnmpTableEntry ipRouteEntry);
    
    /**
     * Sets new ipRouteDest value
     * @param ipRouteEntry table entry object
     * @param newValue new value to be set
     */
    public void setIpRouteDest(SnmpTableEntry ipRouteEntry, SnmpIpAddress newValue);
    
    /**
     * Gets ipRouteIfIndex value
     * @param ipRouteEntry table entry object
     */
    public int getIpRouteIfIndex(SnmpTableEntry ipRouteEntry);
    
    /**
     * Sets new ipRouteIfIndex value
     * @param ipRouteEntry table entry object
     * @param newValue new value to be set
     */
    public void setIpRouteIfIndex(SnmpTableEntry ipRouteEntry, int newValue);
    
    /**
     * Gets ipRouteMetric1 value
     * @param ipRouteEntry table entry object
     */
    public int getIpRouteMetric1(SnmpTableEntry ipRouteEntry);
    
    /**
     * Sets new ipRouteMetric1 value
     * @param ipRouteEntry table entry object
     * @param newValue new value to be set
     */
    public void setIpRouteMetric1(SnmpTableEntry ipRouteEntry, int newValue);
    
    /**
     * Gets ipRouteMetric2 value
     * @param ipRouteEntry table entry object
     */
    public int getIpRouteMetric2(SnmpTableEntry ipRouteEntry);
    
    /**
     * Sets new ipRouteMetric2 value
     * @param ipRouteEntry table entry object
     * @param newValue new value to be set
     */
    public void setIpRouteMetric2(SnmpTableEntry ipRouteEntry, int newValue);
    
    /**
     * Gets ipRouteMetric3 value
     * @param ipRouteEntry table entry object
     */
    public int getIpRouteMetric3(SnmpTableEntry ipRouteEntry);
    
    /**
     * Sets new ipRouteMetric3 value
     * @param ipRouteEntry table entry object
     * @param newValue new value to be set
     */
    public void setIpRouteMetric3(SnmpTableEntry ipRouteEntry, int newValue);
    
    /**
     * Gets ipRouteMetric4 value
     * @param ipRouteEntry table entry object
     */
    public int getIpRouteMetric4(SnmpTableEntry ipRouteEntry);
    
    /**
     * Sets new ipRouteMetric4 value
     * @param ipRouteEntry table entry object
     * @param newValue new value to be set
     */
    public void setIpRouteMetric4(SnmpTableEntry ipRouteEntry, int newValue);
    
    /**
     * Gets ipRouteNextHop value
     * @param ipRouteEntry table entry object
     */
    public SnmpIpAddress getIpRouteNextHop(SnmpTableEntry ipRouteEntry);
    
    /**
     * Sets new ipRouteNextHop value
     * @param ipRouteEntry table entry object
     * @param newValue new value to be set
     */
    public void setIpRouteNextHop(SnmpTableEntry ipRouteEntry, SnmpIpAddress newValue);
    
    /**
     * Gets ipRouteType value
     * @param ipRouteEntry table entry object
     */
    public int getIpRouteType(SnmpTableEntry ipRouteEntry);
    
    /**
     * Sets new ipRouteType value
     * @param ipRouteEntry table entry object
     * @param newValue new value to be set
     */
    public void setIpRouteType(SnmpTableEntry ipRouteEntry, int newValue);
    
    /**
     * Gets ipRouteProto value
     * @param ipRouteEntry table entry object
     */
    public int getIpRouteProto(SnmpTableEntry ipRouteEntry);
    
    /**
     * Gets ipRouteAge value
     * @param ipRouteEntry table entry object
     */
    public int getIpRouteAge(SnmpTableEntry ipRouteEntry);
    
    /**
     * Sets new ipRouteAge value
     * @param ipRouteEntry table entry object
     * @param newValue new value to be set
     */
    public void setIpRouteAge(SnmpTableEntry ipRouteEntry, int newValue);
    
    /**
     * Gets ipRouteMask value
     * @param ipRouteEntry table entry object
     */
    public SnmpIpAddress getIpRouteMask(SnmpTableEntry ipRouteEntry);
    
    /**
     * Sets new ipRouteMask value
     * @param ipRouteEntry table entry object
     * @param newValue new value to be set
     */
    public void setIpRouteMask(SnmpTableEntry ipRouteEntry, SnmpIpAddress newValue);
    
    /**
     * Gets ipRouteMetric5 value
     * @param ipRouteEntry table entry object
     */
    public int getIpRouteMetric5(SnmpTableEntry ipRouteEntry);
    
    /**
     * Sets new ipRouteMetric5 value
     * @param ipRouteEntry table entry object
     * @param newValue new value to be set
     */
    public void setIpRouteMetric5(SnmpTableEntry ipRouteEntry, int newValue);
    
    /**
     * Gets ipRouteInfo value
     * @param ipRouteEntry table entry object
     */
    public SnmpOID getIpRouteInfo(SnmpTableEntry ipRouteEntry);
    
}