summaryrefslogtreecommitdiff
path: root/src/osDomains/DI_APPLENTRY.java
blob: 07bc4b5667bd24a5236031e2b5fa9de37b57a8a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
package osDomains ;
//GenJavaCodeTool, auto create OM Object!
public class DI_APPLENTRY extends  com.zhtelecom.common.snmp.OMMappingInfo
{
    private static final long serialVersionUID = 1L;

    private int applIndex ;

    private String applName ;

    private String applDirectoryName ;

    private String applVersion ;

    private long applUptime ;

    private int applOperStatus ;

    private long applLastChange ;

    private long applInboundAssociations ;

    private long applOutboundAssociations ;

    private long applAccumulatedInboundAssociations ;

    private long applAccumulatedOutboundAssociations ;

    private long applLastInboundActivity ;

    private long applLastOutboundActivity ;

    private long applRejectedInboundAssociations ;

    private long applFailedOutboundAssociations ;

    public String toString()
    {
        return "applIndex="+applIndex+"|"+"applName="+applName+"|"+"applDirectoryName="+applDirectoryName+"|"+"applVersion="+applVersion+"|"+"applUptime="+applUptime+"|"+"applOperStatus="+applOperStatus+"|"+"applLastChange="+applLastChange+"|"+"applInboundAssociations="+applInboundAssociations+"|"+"applOutboundAssociations="+applOutboundAssociations+"|"+"applAccumulatedInboundAssociations="+applAccumulatedInboundAssociations+"|"+"applAccumulatedOutboundAssociations="+applAccumulatedOutboundAssociations+"|"+"applLastInboundActivity="+applLastInboundActivity+"|"+"applLastOutboundActivity="+applLastOutboundActivity+"|"+"applRejectedInboundAssociations="+applRejectedInboundAssociations+"|"+"applFailedOutboundAssociations="+applFailedOutboundAssociations+"|" ;
    }

    public String getMappingOID()
    {
        return "1.3.6.1.2.1.27.1.1";
    }
    public int getApplIndex()
    {
        return applIndex ;
    }
    public void setApplIndex(int value)
    {
        applIndex=value ;
    }
    public String getApplName()
    {
        return applName ;
    }
    public void setApplName(String value)
    {
        applName=value ;
    }
    public String getApplDirectoryName()
    {
        return applDirectoryName ;
    }
    public void setApplDirectoryName(String value)
    {
        applDirectoryName=value ;
    }
    public String getApplVersion()
    {
        return applVersion ;
    }
    public void setApplVersion(String value)
    {
        applVersion=value ;
    }
    public long getApplUptime()
    {
        return applUptime ;
    }
    public void setApplUptime(long value)
    {
        applUptime=value ;
    }
    public int getApplOperStatus()
    {
        return applOperStatus ;
    }
    public void setApplOperStatus(int value)
    {
        applOperStatus=value ;
    }
    public long getApplLastChange()
    {
        return applLastChange ;
    }
    public void setApplLastChange(long value)
    {
        applLastChange=value ;
    }
    public long getApplInboundAssociations()
    {
        return applInboundAssociations ;
    }
    public void setApplInboundAssociations(long value)
    {
        applInboundAssociations=value ;
    }
    public long getApplOutboundAssociations()
    {
        return applOutboundAssociations ;
    }
    public void setApplOutboundAssociations(long value)
    {
        applOutboundAssociations=value ;
    }
    public long getApplAccumulatedInboundAssociations()
    {
        return applAccumulatedInboundAssociations ;
    }
    public void setApplAccumulatedInboundAssociations(long value)
    {
        applAccumulatedInboundAssociations=value ;
    }
    public long getApplAccumulatedOutboundAssociations()
    {
        return applAccumulatedOutboundAssociations ;
    }
    public void setApplAccumulatedOutboundAssociations(long value)
    {
        applAccumulatedOutboundAssociations=value ;
    }
    public long getApplLastInboundActivity()
    {
        return applLastInboundActivity ;
    }
    public void setApplLastInboundActivity(long value)
    {
        applLastInboundActivity=value ;
    }
    public long getApplLastOutboundActivity()
    {
        return applLastOutboundActivity ;
    }
    public void setApplLastOutboundActivity(long value)
    {
        applLastOutboundActivity=value ;
    }
    public long getApplRejectedInboundAssociations()
    {
        return applRejectedInboundAssociations ;
    }
    public void setApplRejectedInboundAssociations(long value)
    {
        applRejectedInboundAssociations=value ;
    }
    public long getApplFailedOutboundAssociations()
    {
        return applFailedOutboundAssociations ;
    }
    public void setApplFailedOutboundAssociations(long value)
    {
        applFailedOutboundAssociations=value ;
    }
}