KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > enterprise > management > config > JMXConnectorConfigFactory


1 /*
2  * The contents of this file are subject to the terms
3  * of the Common Development and Distribution License
4  * (the License). You may not use this file except in
5  * compliance with the License.
6  *
7  * You can obtain a copy of the license at
8  * https://glassfish.dev.java.net/public/CDDLv1.0.html or
9  * glassfish/bootstrap/legal/CDDLv1.0.txt.
10  * See the License for the specific language governing
11  * permissions and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL
14  * Header Notice in each file and include the License file
15  * at glassfish/bootstrap/legal/CDDLv1.0.txt.
16  * If applicable, add the following below the CDDL Header,
17  * with the fields enclosed by brackets [] replaced by
18  * you own identifying information:
19  * "Portions Copyrighted [year] [name of copyright owner]"
20  *
21  * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
22  */

23  
24 /*
25  * $Header: /cvs/glassfish/admin/mbeanapi-impl/src/java/com/sun/enterprise/management/config/JMXConnectorConfigFactory.java,v 1.6 2006/03/09 20:30:39 llc Exp $
26  * $Revision: 1.6 $
27  * $Date: 2006/03/09 20:30:39 $
28  */

29 package com.sun.enterprise.management.config;
30
31 import java.util.Map JavaDoc;
32 import java.util.Set JavaDoc;
33 import java.util.Collections JavaDoc;
34
35
36 import javax.management.ObjectName JavaDoc;
37 import javax.management.AttributeList JavaDoc;
38
39 import com.sun.appserv.management.base.XTypes;
40 import com.sun.appserv.management.base.Container;
41 import com.sun.appserv.management.base.Util;
42 import com.sun.appserv.management.util.jmx.JMXUtil;
43 import com.sun.appserv.management.config.JMXConnectorConfigKeys;
44 import com.sun.appserv.management.config.JMXConnectorConfigKeys;
45
46 import com.sun.enterprise.management.support.oldconfig.OldAdminServiceMBean;
47
48
49 import com.sun.appserv.management.util.misc.GSetUtil;
50
51 /**
52  */

53 public final class JMXConnectorConfigFactory extends ConfigFactory
54 {
55     private final OldAdminServiceMBean mOldAdminServiceMBean;
56     
57         public
58     JMXConnectorConfigFactory(
59         final ConfigFactoryCallback callbacks)
60     {
61         super( callbacks );
62         
63         mOldAdminServiceMBean = getOldAdminServiceMBean();
64     }
65     
66     
67         private final OldAdminServiceMBean
68     getOldAdminServiceMBean()
69     {
70         return( getOldConfigProxies().getOldAdminServiceMBean( getConfigName() ) );
71     }
72     
73     
74     private final Set JavaDoc<String JavaDoc> LEGAL_OPTIONAL_KEYS =
75         GSetUtil.newUnmodifiableStringSet(
76             JMXConnectorConfigKeys.ACCEPT_ALL_KEY,
77             JMXConnectorConfigKeys.SECURITY_ENABLED_KEY );
78         protected Set JavaDoc<String JavaDoc>
79     getLegalOptionalCreateKeys()
80     {
81         return( LEGAL_OPTIONAL_KEYS );
82     }
83     
84     private static final String JavaDoc ADDRESS_KEY = "Address";
85     private static final String JavaDoc PORT_KEY = "Port";
86     private static final String JavaDoc AUTH_REALM_NAME_KEY = "AuthRealmName";
87     
88     
89     
90         public ObjectName JavaDoc
91     create( String JavaDoc name, String JavaDoc address, String JavaDoc port,
92         String JavaDoc authRealmName, Map JavaDoc<String JavaDoc,String JavaDoc> optional )
93     {
94         final String JavaDoc[] requiredParams =
95         {
96             ADDRESS_KEY, address,
97             PORT_KEY, port,
98             AUTH_REALM_NAME_KEY, authRealmName,
99         };
100         final Map JavaDoc<String JavaDoc,String JavaDoc> params = initParams( name, requiredParams, optional );
101         final ObjectName JavaDoc amxObjectName = createNamedChild( name, params );
102         return amxObjectName;
103     }
104
105         protected void
106     removeByName( final String JavaDoc name )
107     {
108         mOldAdminServiceMBean.removeJmxConnectorByName( name );
109     }
110
111         protected ObjectName JavaDoc
112     createOldChildConfig( final AttributeList JavaDoc translatedAttrs )
113     {
114         return mOldAdminServiceMBean.createJmxConnector( translatedAttrs );
115     }
116 }
117
118
119
120
121
Popular Tags