1 package ist.coach.coachEmsCommon; 2 3 import ist.coach.coachEmsMib.LogicalInterfaceValueType; 4 import intt.itu.itut_x780.SourceIndicatorType; 5 6 import org.omg.CosNaming.NameComponent ; 7 12 13 public class LogicalInterfaceValueTypeImpl extends LogicalInterfaceValueType { 14 15 public LogicalInterfaceValueTypeImpl() {} 16 17 public LogicalInterfaceValueTypeImpl( 18 19 20 org.omg.CosNaming.NameComponent [][] supportedByObjectList, 21 intt.itu.itut_x780.OperationalStateType operationalState, 22 int ifIndex, 23 String ifDescr, 24 int ifType, 25 int ifMtu, 26 long ifSpeed, 27 byte[] ifPhysAddress, 28 int ifAdminStatus, 29 long ifLastChange, 30 long ifInOctets, 31 long ifInUcastPkts, 32 long ifInNUcastPkts, 33 long ifInErrors, 34 long ifUnknownProtos, 35 long ifOutOctets, 36 long ifOutUcastPkts, 37 long ifOutNUcastPkts, 38 long ifOutDiscards, 39 long ifOutErrors, 40 long ifOutQLen, 41 String ifSpecific, 42 43 44 NameComponent [] name, 45 String objectClass, 46 String [] packages, 47 SourceIndicatorType creationSource, 48 short deletePolicy 49 ) { 50 51 52 this.supportedByObjectList = supportedByObjectList; 53 this.operationalState = operationalState; 54 55 this.ifIndex = ifIndex; 56 this.ifDescr = ifDescr; 57 this.ifType = ifType; 58 this.ifMtu = ifMtu; 59 this.ifSpeed = ifSpeed; 60 this.ifPhysAddress = ifPhysAddress; 61 this.ifAdminStatus = ifAdminStatus; 62 this.ifLastChange = ifLastChange; 63 this.ifInOctets = ifInOctets; 64 this.ifInUcastPkts = ifInUcastPkts; 65 this.ifInNUcastPkts = ifInNUcastPkts; 66 this.ifInErrors = ifInErrors; 67 this.ifInUnknownProtos = ifInUnknownProtos; 68 this.ifOutOctets = ifOutOctets; 69 this.ifOutUcastPkts = ifOutUcastPkts; 70 this.ifOutNUcastPkts = ifOutNUcastPkts; 71 this.ifOutDiscards = ifOutDiscards; 72 this.ifOutErrors = ifOutErrors; 73 this.ifOutQLen = ifOutQLen; 74 this.ifSpecific = ifSpecific; 75 76 this.name = name; 77 this.objectClass = objectClass; 78 this.packages = packages; 79 this.creationSource = creationSource; 80 this.deletePolicy = deletePolicy; 81 82 } 83 } 84 85 | Popular Tags |