KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > snmp4j > agent > agentx > AgentXAddAgentCapsPDU


1 /*_############################################################################
2   _##
3   _## SNMP4J-AgentX - AgentXAddAgentCapsPDU.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;
24
25 import java.io.*;
26 import java.nio.*;
27
28 import org.snmp4j.smi.*;
29
30 public class AgentXAddAgentCapsPDU extends AgentXContextPDU {
31
32   private OID id;
33   private OctetString descr;
34
35   public AgentXAddAgentCapsPDU(AgentXMessageHeader header) {
36     super(header);
37     if (header.getType() != AGENTX_ADDAGENTCAPS_PDU) {
38       throw new IllegalArgumentException JavaDoc();
39     }
40   }
41
42   public AgentXAddAgentCapsPDU(OctetString context, OID id, OctetString descr) {
43     super(AGENTX_ADDAGENTCAPS_PDU, context);
44     this.id = id;
45     this.descr = descr;
46   }
47
48   public void decodeAfterContext(ByteBuffer buf, int length) throws IOException {
49     id = new OID();
50     AgentXProtocol.decodeOID(buf, id);
51     descr = AgentXProtocol.decodeOctetString(buf);
52   }
53
54   public void encodeAfterContext(ByteBuffer buf) {
55     AgentXProtocol.encodeOID(buf, id, false);
56     AgentXProtocol.encodeOctetString(buf, descr);
57   }
58
59   public int getAfterContextLength() {
60     return AgentXProtocol.getOIDLength(id) +
61         AgentXProtocol.getOctetStringLength(descr);
62   }
63
64   public OctetString getDescr() {
65     return descr;
66   }
67
68   public OID getId() {
69     return id;
70   }
71
72   public void setDescr(OctetString descr) {
73     this.descr = descr;
74   }
75
76   public void setId(OID id) {
77     this.id = id;
78   }
79 }
80
Popular Tags