KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > j2ee > sun > ide > j2ee > mbmapping > Constants


1 /*
2  * The contents of this file are subject to the terms of the Common Development
3  * and Distribution License (the License). You may not use this file except in
4  * compliance with the License.
5  *
6  * You can obtain a copy of the License at http://www.netbeans.org/cddl.html
7  * or http://www.netbeans.org/cddl.txt.
8  *
9  * When distributing Covered Code, include this CDDL Header Notice in each file
10  * and include the License file at http://www.netbeans.org/cddl.txt.
11  * If applicable, add the following below the CDDL Header, with the fields
12  * enclosed by brackets [] replaced by your own identifying information:
13  * "Portions Copyrighted [year] [name of copyright owner]"
14  *
15  * The Original Software is NetBeans. The Initial Developer of the Original
16  * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
17  * Microsystems, Inc. All Rights Reserved.
18  */

19 /*
20  * Constants.java
21  *
22  * Created on January 16, 2004, 4:16 PM
23  */

24
25 package org.netbeans.modules.j2ee.sun.ide.j2ee.mbmapping;
26
27 /**
28  *
29  * @author nityad
30  */

31 public interface Constants {
32
33     static final String JavaDoc MAP_J2EEAPP_STANDALONE = "com.sun.appserv:type=applications,category=config"; //NOI18N
34

35     //Server MBean
36
static final String JavaDoc OBJ_J2EE = "com.sun.appserv:j2eeType=J2EEServer,name=server,category=runtime"; //NOI18N
37
static final String JavaDoc[] JSR_SERVER_INFO = {"debugPort", "nodes", "serverVersion", "restartRequired", "serverVendor" }; //NOI18N
38
static final String JavaDoc[] ADDITIONAL_SERVER_INFO = {"port", "domain" }; //NOI18N
39

40     static final String JavaDoc MAP_RESOURCES = "com.sun.appserv:type=resources,category=config";//NOI18N
41

42     static final String JavaDoc MAP_JVMOptions = "com.sun.appserv:type=java-config,config=server-config,category=config"; //NOI18N
43
static final String JavaDoc DEBUG_OPTIONS = "debug-options"; //NOI18N
44
static final String JavaDoc JAVA_HOME = "java-home"; //NOI18N
45
static final String JavaDoc DEBUG_OPTIONS_ADDRESS = "address="; //NOI18N
46
static final String JavaDoc JPDA_PORT = "jpda_port_number"; //NOI18N
47
static final String JavaDoc SHARED_MEM = "shared_memory"; //NOI18N
48
static final String JavaDoc ISMEM = "transport=dt_shmem"; //NOI18N
49
static final String JavaDoc ISSOCKET = "transport=dt_socket"; //NOI18N
50
static final String JavaDoc DEF_DEUG_OPTIONS = "-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=1044"; //NOI18N
51
static final String JavaDoc DEF_DEUG_OPTIONS_81 = "-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=9009"; //NOI18N
52
static final String JavaDoc DEF_DEUG_OPTIONS_SOCKET = "-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=11000"; //NOI18N
53
static final String JavaDoc DEF_DEUG_OPTIONS_SHMEM = "-Xdebug -Xrunjdwp:transport=dt_shmem,server=y,suspend=n,address="; //NOI18N
54

55     //Config Mbean Queries
56
static final String JavaDoc[] CONFIG_MODULE = {"web-module", "j2ee-application", "ejb-module", "connector-module", "appclient-module"}; //NOI18N
57

58 }
59
Popular Tags