1 package ist.coach.coachEmsMibComponents.IpNodeProviderComposition; 2 3 import org.omg.CosNaming.NameComponent ; 4 5 public class IpNodeDataStructure { 6 7 public String domainName; 8 public String hostname; 9 public byte[] managementIPAddress; 10 public NameComponent [] name; 11 public String [] packageNameList; 12 public int supportedSnmpVersions; 13 public intt.itu.itut_x780.AdministrativeStateType administrativeState; 14 public String userLabel; 15 public String vendorName; 16 public String version; 17 public String locationName; 18 public int snmpPort; 19 public String sysName; 20 public String sysContact; 21 public String objectclass; 22 public short deletePolicy; 23 public intt.itu.itut_x780.SourceIndicatorType sourceIndicator; 24 public intt.itu.itut_x780.OperationalStateType operationalState; 25 26 private int notificationIdentifier; 27 28 public IpNodeDataStructure ( 29 String domainName, 30 String hostname, 31 byte[] managementIPAddress, 32 NameComponent [] name, 33 String [] packageNameList, 34 int supportedSnmpVersions, 35 intt.itu.itut_x780.AdministrativeStateType administrativeState, 36 String userLabel, 37 String vendorName, 38 String version, 39 String locationName, 40 int snmpPort, 41 String sysName, 42 String sysContact, 43 String objectclass, 44 short deletePolicy, 45 intt.itu.itut_x780.SourceIndicatorType sourceIndicator, 46 intt.itu.itut_x780.OperationalStateType operationalState) { 47 48 this.domainName = domainName; 49 this.hostname = hostname; 50 this.managementIPAddress = managementIPAddress; 51 this.name = name; 52 this.packageNameList = packageNameList; 53 this.supportedSnmpVersions = supportedSnmpVersions; 54 this.administrativeState = administrativeState; 55 this.userLabel = userLabel; 56 this.vendorName = vendorName; 57 this.version = version; 58 this.locationName = locationName; 59 this.snmpPort = snmpPort; 60 this.sysName = sysName; 61 this.sysContact = sysContact; 62 this.objectclass = objectclass; 63 this.deletePolicy = deletePolicy; 64 this.sourceIndicator = sourceIndicator; 65 this.operationalState = operationalState; 66 67 this.notificationIdentifier = 0; 68 69 } 70 71 public int getUniqueNotificationIdentifier() { 72 73 this.notificationIdentifier++; 74 75 return (this.notificationIdentifier); 76 } 77 78 } 79 | Popular Tags |