KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > snmp4j > agent > mo > jmx > MBeanActionInfo


1 /*_############################################################################
2   _##
3   _## SNMP4J-AgentJMX - MBeanActionInfo.java
4   _##
5   _## Copyright (C) 2006-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.mo.jmx;
24
25 /**
26  * The <code>MBeanActionInfo</code> defines a MBean action. The information
27  * needed to call a MBean action includes method name, parameters, and
28  * optionally the concrete signature of the method implementing the action.
29  * The action ID identifies the action
30  *
31  * @author Frank Fock
32  * @version 1.0
33  */

34 public class MBeanActionInfo {
35
36   private int actionID;
37   private String JavaDoc method;
38   private Object JavaDoc[] parameters = new Object JavaDoc[0];
39   private String JavaDoc[] signature = new String JavaDoc[0];
40
41   public MBeanActionInfo(int actionID, String JavaDoc actionMethod) {
42     this.actionID = actionID;
43     this.method = actionMethod;
44   }
45
46   public MBeanActionInfo(int actionID, String JavaDoc actionMethod,
47                          Object JavaDoc[] actionParameters) {
48     this(actionID, actionMethod);
49     if (actionParameters != null) {
50       this.parameters = actionParameters;
51       String JavaDoc[] signature = new String JavaDoc[actionParameters.length];
52       for (int i = 0; i < actionParameters.length; i++) {
53         signature[i] = actionParameters[i].getClass().getName();
54       }
55     }
56   }
57
58   public MBeanActionInfo(int actionID, String JavaDoc actionMethod,
59                          Object JavaDoc[] actionParameters,
60                          String JavaDoc[] signature) {
61     this(actionID, actionMethod);
62     this.parameters = actionParameters;
63     this.signature = signature;
64   }
65
66   public int getActionID() {
67     return actionID;
68   }
69
70   public String JavaDoc getMethod() {
71     return method;
72   }
73
74   public Object JavaDoc[] getParameters() {
75     return parameters;
76   }
77
78   public String JavaDoc[] getSignature() {
79     return signature;
80   }
81
82 }
83
Popular Tags