01: /*_############################################################################
02: _##
03: _## SNMP4J-AgentX - AgentXCommitSetPDU.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;
24:
25: import java.nio.ByteBuffer;
26: import java.io.IOException;
27:
28: public class AgentXCommitSetPDU extends AgentXPDU {
29:
30: public AgentXCommitSetPDU() {
31: super (AGENTX_COMMITSET_PDU);
32: }
33:
34: public AgentXCommitSetPDU(AgentXMessageHeader header) {
35: super (header);
36: if (header.getType() != AGENTX_COMMITSET_PDU) {
37: throw new IllegalArgumentException();
38: }
39: }
40:
41: protected void encodePayload(ByteBuffer buf) {
42: }
43:
44: public int getPayloadLength() {
45: return 0;
46: }
47:
48: public void decodePayload(ByteBuffer buf, int length)
49: throws IOException {
50: }
51:
52: protected void beforeEncode() {
53: }
54:
55: }
|