KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > ist > coach > coachEmsCommon > IpNodeValueTypeImpl


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 JavaDoc;
10 /**
11  * @author Administrator (digi@intracom.gr)
12  *
13  * Copyright (c) Intracom S.A., N.T., 2003
14  */

15
16 public class IpNodeValueTypeImpl extends IpNodeValueType {
17     
18     public IpNodeValueTypeImpl() {}
19     
20     public IpNodeValueTypeImpl(
21     /* inherited from ManagedElementValueType */
22         AdministrativeStateType administrativeState,
23         OperationalStateType operationalState,
24         UsageStateType usageState,
25         String JavaDoc userLabel,
26         String JavaDoc vendorName,
27         String JavaDoc version,
28         String JavaDoc locationName,
29         
30         String JavaDoc domainName,
31         String JavaDoc hostname,
32         byte[] managementIPAddress,
33         int supportedSnmpVersions,
34         int snmpPort,
35         int ifNumber,
36         String JavaDoc sysDescr,
37         String JavaDoc sysObjectID,
38         long sysUpTime,
39         String JavaDoc sysContact,
40         String JavaDoc sysName,
41         short sysServices,
42         
43         /* inherited from ManagedObjectValueType */
44         NameComponent JavaDoc [] name,
45         String JavaDoc objectClass,
46         String JavaDoc [] 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