KickJava   Java API By Example, From Geeks To Geeks.

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


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/SSLConfigImpl.java,v 1.4 2005/12/25 03:39:41 tcfujii Exp $
26  * $Revision: 1.4 $
27  * $Date: 2005/12/25 03:39:41 $
28  */

29 package com.sun.enterprise.management.config;
30
31 import com.sun.enterprise.management.support.Delegate;
32
33
34 /**
35     This implementation delegates to an existing MBean.
36  */

37 public final class SSLConfigImpl extends SSLConfigImplBase
38     // implements IIOPListenerSSLConfig
39
{
40         public
41     SSLConfigImpl( Delegate delegate )
42     {
43         super( delegate );
44     }
45
46     /*
47         protected void
48     addCustomMappings( final AttributeNameMapper mapper )
49     {
50         super.addCustomMappings( mapper );
51         
52         mapper.addMapping( "ssl2-enabled", "SSL2Enabled" );
53         mapper.addMapping( "ssl2-ciphers", "SSL2Ciphers" );
54         mapper.addMapping( "ssl3-enabled", "SSL3Enabled" );
55         mapper.addMapping( "ssl3-tls-ciphers", "SSL3TLSCiphers" );
56         mapper.addMapping( "tls-enabled", "TLSEnabled" );
57         mapper.addMapping( "tls-rollback-enabled", "TLSRollbackEnabled" );
58     }
59     */

60 }
61
62
63
Popular Tags