01: /*_############################################################################
02: _##
03: _## SNMP4J-AgentX - NewIndexOID.java
04: _##
05: _## Copyright (C) 2005-2007 Frank Fock (SNMP4J.org)
06: _##
07: _## This program is free software; you can redistribute it and/or modify
08: _## it under the terms of the GNU General Public License version 2 as
09: _## published by the Free Software Foundation.
10: _##
11: _## This program is distributed in the hope that it will be useful,
12: _## but WITHOUT ANY WARRANTY; without even the implied warranty of
13: _## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14: _## GNU General Public License for more details.
15: _##
16: _## You should have received a copy of the GNU General Public License
17: _## along with this program; if not, write to the Free Software
18: _## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19: _## MA 02110-1301 USA
20: _##
21: _##########################################################################*/
22:
23: package org.snmp4j.agent.agentx.subagent.index;
24:
25: import org.snmp4j.smi.OID;
26:
27: /**
28: * The <code>AnyNewIndexOID</code> is a special OID subclass for shared table
29: * indexes. This object can be used to create a locally unique index value
30: * during sub-agent initialization that will be replaced by a globally unique
31: * index (which has not been used before by any sub-agent) when AgentX
32: * connection is being established.
33: *
34: * @author Frank Fock
35: * @version 1.0
36: */
37: public class NewIndexOID extends OID {
38:
39: public NewIndexOID() {
40: }
41:
42: public NewIndexOID(int[] index) {
43: super (index);
44: }
45:
46: public NewIndexOID(String index) {
47: super (index);
48: }
49:
50: public Object clone() {
51: return new NewIndexOID(getValue());
52: }
53:
54: }
|