package avnmp.java.tutorial.SnmpInstr;

import java.lang.reflect.Field;
import java.io.*;
import java.util.*;
import magician.Node.*;
import snmp.*;
import snmp.agent.*;
import avnmp.java.lp.SnmpInterface;

public class LoadSnmpBase extends KU_SmartPacket_V2 implements java.io.Serializable {
    transient private avnmp.java.load.LoadPacket __lp;

// Here we add many new classes that the Magician active packet needs to be able to serialize.
// All of these classes implement the SNMP agent that allows our application to become SNMP
// manageable.

    transient private snmp.agent.AgentTableInterface __ati;
    transient private snmp.agent.InvalidIdException __iie;
    transient private snmp.agent.AppCommunicator __apcomm;
    transient private snmp.agent.CommInterface __commInt;
    transient private snmp.agent.DuplicateEntryException __de;
    transient private avnmp.java.lp.SnmpInterface __sti;

    public LoadSnmpBase() {
    }

    private void writeObject(ObjectOutputStream out) throws IOException {
         try {
              Field[] comps = Class.forName("avnmp.java.tutorial.LoadSnmpBase").getDeclaredFields();
              describeComponents(comps, out);
         } catch(ClassNotFoundException e) {
              e.printStackTrace();
         }
         out.defaultWriteObject();
    }
}