1 11 12 package com.sun.jmx.snmp; 13 14 import java.io.Serializable ; 15 16 import com.sun.jmx.snmp.SnmpSecurityParameters; 17 18 import com.sun.jmx.snmp.SnmpDefinitions; 19 36 public abstract class SnmpScopedPduPacket extends SnmpPdu 37 implements Serializable { 38 41 public int msgMaxSize = 0; 42 43 46 public int msgId = 0; 47 48 61 public byte msgFlags = 0; 62 63 66 public int msgSecurityModel = 0; 67 68 71 public byte[] contextEngineId = null; 72 73 76 public byte[] contextName = null; 77 78 82 public SnmpSecurityParameters securityParameters = null; 83 84 87 protected SnmpScopedPduPacket() { 88 version = SnmpDefinitions.snmpVersionThree; 89 } 90 } 91 92 | Popular Tags |