JMXManagedObject.java
01 /*
02  *
03  * Licensed to the Apache Software Foundation (ASF) under one
04  * or more contributor license agreements.  See the NOTICE file
05  * distributed with this work for additional information
06  * regarding copyright ownership.  The ASF licenses this file
07  * to you under the Apache License, Version 2.0 (the
08  * "License"); you may not use this file except in compliance
09  * with the License.  You may obtain a copy of the License at
10  
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  */
21 package org.apache.qpid.management.ui.jmx;
22 
23 import java.util.HashMap;
24 
25 import javax.management.ObjectName;
26 
27 import org.apache.qpid.management.ui.ManagedBean;
28 
29 
30 public class JMXManagedObject extends ManagedBean
31 {
32     private ObjectName _objName;
33     
34     @SuppressWarnings("unchecked")
35     public JMXManagedObject(ObjectName objName)
36     {
37         super();
38         this._objName = objName;
39         setUniqueName(_objName.toString());
40         setDomain(_objName.getDomain());       
41         super.setProperties(new HashMap(_objName.getKeyPropertyList()));
42     }
43     
44     public ObjectName getObjectName()
45     {
46         return _objName;
47     }
48 }