KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > snmp4j > agent > mo > snmp > DisplayStringScalar


1 /*_############################################################################
2   _##
3   _## SNMP4J-Agent - DisplayStringScalar.java
4   _##
5   _## Copyright (C) 2005-2007 Frank Fock (SNMP4J.org)
6   _##
7   _## Licensed under the Apache License, Version 2.0 (the "License");
8   _## you may not use this file except in compliance with the License.
9   _## You may obtain a copy of the License at
10   _##
11   _## http://www.apache.org/licenses/LICENSE-2.0
12   _##
13   _## Unless required by applicable law or agreed to in writing, software
14   _## distributed under the License is distributed on an "AS IS" BASIS,
15   _## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16   _## See the License for the specific language governing permissions and
17   _## limitations under the License.
18   _##
19   _##########################################################################*/

20
21 package org.snmp4j.agent.mo.snmp;
22
23 import org.snmp4j.agent.mo.MOScalar;
24 import org.snmp4j.smi.OctetString;
25 import org.snmp4j.smi.OID;
26 import org.snmp4j.agent.MOAccess;
27 import org.snmp4j.agent.mo.snmp.DisplayString.DisplayStringValidation;
28
29 /**
30  * The <code>DisplayStringScalar</code> class implements the DisplayString
31  * textual convention as defined by the SNMPv2-TC MIB specification for scalar
32  * objects.
33  *
34  * @author Frank Fock
35  * @version 1.0
36  */

37 public class DisplayStringScalar extends MOScalar {
38
39   public DisplayStringScalar(OID oid,
40                              MOAccess access,
41                              OctetString value,
42                              int minSize, int maxSize) {
43     super(oid, access, value);
44     addMOValueValidationListener(new DisplayStringValidation(minSize,
45         maxSize));
46   }
47
48   public DisplayStringScalar(OID oid,
49                              MOAccess access,
50                              OctetString value) {
51     super(oid, access, value);
52     addMOValueValidationListener(new DisplayStringValidation(0, 255));
53   }
54
55 }
56
Popular Tags