01: /*
02: * JBoss, Home of Professional Open Source.
03: * Copyright 2006, Red Hat Middleware LLC, and individual contributors
04: * as indicated by the @author tags. See the copyright.txt file in the
05: * distribution for a full listing of individual contributors.
06: *
07: * This is free software; you can redistribute it and/or modify it
08: * under the terms of the GNU Lesser General Public License as
09: * published by the Free Software Foundation; either version 2.1 of
10: * the License, or (at your option) any later version.
11: *
12: * This software is distributed in the hope that it will be useful,
13: * but WITHOUT ANY WARRANTY; without even the implied warranty of
14: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15: * Lesser General Public License for more details.
16: *
17: * You should have received a copy of the GNU Lesser General Public
18: * License along with this software; if not, write to the Free
19: * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20: * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
21: */
22: package org.jboss.test.xml.mbeanserver;
23:
24: import java.util.ArrayList;
25: import java.util.List;
26: import java.util.Map;
27: import java.util.HashMap;
28:
29: /**
30: * An encapsulation of the mbean deployment data
31: *
32: * @author Scott.Stark@jboss.org
33: * @version $Revision: 57211 $
34: */
35: public class MBeanData {
36: /** mbean/@name */
37: private String name;
38: /** mbean/@code */
39: private String code;
40: /** mbean/attribute == ArrayList<javax.management.Attribute> */
41: private ArrayList attributes = new ArrayList();
42: /** mbean/depends == ArrayList<javax.management.ObjectName> */
43: private ArrayList depends = new ArrayList();
44:
45: public String getName() {
46:
47: return name;
48: }
49:
50: public void setName(String name) {
51: this .name = name;
52: }
53:
54: public String getCode() {
55: return code;
56: }
57:
58: public void setCode(String code) {
59: this .code = code;
60: }
61:
62: public List getAttributes() {
63: return attributes;
64: }
65:
66: public void setAttributes(List attributes) {
67: this .attributes.clear();
68: this .attributes.addAll(attributes);
69: }
70:
71: public List getDepends() {
72: return depends;
73: }
74:
75: public void setDepends(List depends) {
76: this .depends.clear();
77: this .depends.addAll(depends);
78: }
79:
80: public Map getAttributeMap() {
81: HashMap map = new HashMap();
82: for (int n = 0; n < attributes.size(); n++) {
83: MBeanAttribute attr = (MBeanAttribute) attributes.get(n);
84: map.put(attr.getName(), attr);
85: }
86: return map;
87: }
88: }
|