KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > snmp4j > agent > agentx > subagent > AgentXSharedMOTable


1 /*_############################################################################
2   _##
3   _## SNMP4J-AgentX - AgentXSharedMOTable.java
4   _##
5   _## Copyright (C) 2005-2007 Frank Fock (SNMP4J.org)
6   _##
7   _## This program is free software; you can redistribute it and/or modify
8   _## it under the terms of the GNU General Public License version 2 as
9   _## 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;
24
25 import org.snmp4j.agent.mo.MOTable;
26 // For JavaDoc:
27
import org.snmp4j.agent.mo.MOTableSubIndex;
28
29 /**
30  * The <code>AgentXSharedMOTable</code> extends the <code>MOTable</code>
31  * interface. It serves as a marker interface to be able to differentiate
32  * between regular tables and AgentX shared index tables. The latter
33  * require an index definition where all sub-indexes have an OID specified
34  * ({@link MOTableSubIndex#getOid()}). AgentX shared index tables provide
35  * services needed for sharing rows of the same conceptual table
36  * across multiple AgentX sub-agents.
37  *
38  * @author Frank Fock
39  * @version 1.0
40  */

41 public interface AgentXSharedMOTable extends MOTable {
42
43 }
44
Popular Tags