1 package ist.coach.coachEmsCommon; 2 3 import ist.coach.coachEmsMib.IpNodeValueType; 4 import intt.itu.itut_x780.AdministrativeStateType; 5 import intt.itu.itut_x780.OperationalStateType; 6 import intt.itu.itut_x780.UsageStateType; 7 import intt.itu.itut_x780.SourceIndicatorType; 8 9 import org.omg.CosNaming.NameComponent ; 10 15 16 public class IpNodeValueTypeImpl extends IpNodeValueType { 17 18 public IpNodeValueTypeImpl() {} 19 20 public IpNodeValueTypeImpl( 21 22 AdministrativeStateType administrativeState, 23 OperationalStateType operationalState, 24 UsageStateType usageState, 25 String userLabel, 26 String vendorName, 27 String version, 28 String locationName, 29 30 String domainName, 31 String hostname, 32 byte[] managementIPAddress, 33 int supportedSnmpVersions, 34 int snmpPort, 35 int ifNumber, 36 String sysDescr, 37 String sysObjectID, 38 long sysUpTime, 39 String sysContact, 40 String sysName, 41 short sysServices, 42 43 44 NameComponent [] name, 45 String objectClass, 46 String [] packages, 47 SourceIndicatorType creationSource, 48 short deletePolicy 49 ) { 50 51 52 this.administrativeState = administrativeState; 53 this.operationalState = operationalState; 54 this.usageState = usageState; 55 this.userLabel = userLabel; 56 this.vendorName = vendorName; 57 this.version = version; 58 this.locationName = locationName; 59 this.domainName = domainName; 60 this.hostname = hostname; 61 this.managementIPAddress = managementIPAddress; 62 this.supportedSnmpVersions = supportedSnmpVersions; 63 this.snmpPort = snmpPort; 64 this.ifNumber = ifNumber; 65 this.sysDescr = sysDescr; 66 this.sysObjectID = sysObjectID; 67 this.sysUpTime = sysUpTime; 68 this.sysContact = sysContact; 69 this.sysName = sysName; 70 this.sysServices = sysServices; 71 this.name = name; 72 this.objectClass = objectClass; 73 this.packages = packages; 74 this.creationSource = creationSource; 75 this.deletePolicy = deletePolicy; 76 77 } 78 } 79 80 | Popular Tags |