KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > appserv > management > config > ServerConfigKeys


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 package com.sun.appserv.management.config;
24
25 /**
26     Keys for use with {@link DomainConfig#createStandaloneServerConfig} and
27     {@link DomainConfig#createClusteredServerConfig}
28  */

29 public final class ServerConfigKeys
30 {
31     private ServerConfigKeys() {}
32     
33     /** Key for the system property that would be used to assign port value for the listener named http-listener-1**/
34         public static final String JavaDoc HTTP_LISTENER_1_PORT_KEY = PropertiesAccess.PROPERTY_PREFIX +"HTTP_LISTENER_PORT";
35         
36     /** Key for the system property that would be used to assign port value for the listener named http-listener-2**/
37         public static final String JavaDoc HTTP_LISTENER_2_PORT_KEY = PropertiesAccess.PROPERTY_PREFIX +"HTTP_SSL_LISTENER_PORT";
38         
39     /** Key for the system property that would be used to assign port value for the iiop listener named orb-listener-1**/
40         public static final String JavaDoc ORB_LISTENER_1_PORT_KEY = PropertiesAccess.PROPERTY_PREFIX +"IIOP_LISTENER_PORT";
41         
42     /** Key for the system property that would be used to assign port value for the iiop listener named admin-listener-port **/
43         public static final String JavaDoc ADMIN_LISTENER_PORT_KEY = PropertiesAccess.PROPERTY_PREFIX +"HTTP_ADMIN_LISTENER_PORT";
44         
45     /** Key for the system property that would be used to assign port value for the secure iiop listener named SSL**/
46         public static final String JavaDoc SSL_PORT_KEY = PropertiesAccess.PROPERTY_PREFIX +"IIOP_SSL_LISTENER_PORT";
47         
48     /** Key for the system property that would be used to assign port value for the secure client-auth
49      * supporting SSL enabled iiop listenerlistener named SSL_MUTUALAUTH**/

50         public static final String JavaDoc SSL_MUTUALAUTH_PORT_KEY = PropertiesAccess.PROPERTY_PREFIX +"IIOP_SSL_MUTUALAUTH_PORT";
51         
52     /** Key for the system property that would be used to assign port value for the secure iiop listener named JMX_SYSTEM_CONNECTOR**/
53         public static final String JavaDoc JMX_SYSTEM_CONNECTOR_PORT_KEY= PropertiesAccess.PROPERTY_PREFIX +"JMX_SYSTEM_CONNECTOR_PORT";
54         
55     /** Key for the system property that would be used to assign port value for the secure iiop listener named JMX_SYSTEM_CONNECTOR**/
56         public static final String JavaDoc JMS_PROVIDER_PORT_KEY = PropertiesAccess.PROPERTY_PREFIX +"JMS_PROVIDER_PORT";
57 }
58
Popular Tags