KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > j2ee > sun > ws7 > 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 package org.netbeans.modules.j2ee.sun.ws7;
21
22 public interface Constants {
23     static final String JavaDoc WAIT_NODE = "wait_node"; // NOI18N
24

25     // J2EE TYPE Names
26
static final String JavaDoc WEB_MOD = "WebModule"; // NOI18N
27

28     // CONFIG - Resource Names
29
static final String JavaDoc JDBC_RESOURCE = "jdbc-resource"; // NOI18N
30
static final String JavaDoc JNDI_RESOURCE = "external-jndi-resource"; // NOI18N
31
static final String JavaDoc CUSTOM_RESOURCE = "custom-resource"; // NOI18N
32
static final String JavaDoc MAIL_RESOURCE = "mail-resource"; // NOI18N
33

34     // Operations
35
static final String JavaDoc OP_DISABLE = "disable"; // NOI18N
36
static final String JavaDoc OP_ENABLE = "enable"; // NOI18N
37
static final String JavaDoc OP_RESTART = "restart"; // NOI18N
38
static final String JavaDoc OP_UNDEPLOY = "undeploy"; // NOI18N
39
static final String JavaDoc OP_DELETE_RESOURCES = "delete"; // NOI18N
40

41     static final String JavaDoc[] JVM_STR_TO_ARR = {"server-class-path", "class-path-suffix", "class-path-prefix" }; // NOI18N
42
static final String JavaDoc[] JVM_BOOLEAN_VALS = {"sticky-attach", "debug", "enabled", "env-class-path-ignored" }; //NOI18N
43
static final String JavaDoc[] RESOURCE_BOOLEAN_VALS = {"isolation-level-guaranteed", "fail-all-connections", "enabled" }; //NOI18N
44

45     static final String JavaDoc[] READ_ONLY_PROPS_RESOURCES = {"jndi-name"}; // NOI18N
46
static final String JavaDoc[] READ_ONLY_PROPS_APPS = {"uri", "path"}; // NOI18N
47
static final String JavaDoc RES_PROPERTY="property";
48     static final String JavaDoc JDBC_RES_CONN_CREATION_PROPERTY="connection-creation-property";// NOI18N
49
static final String JavaDoc JDBC_RES_CONN_LEASE_PROPERTY="connection-lease-property";// NOI18N
50

51     static final String JavaDoc JVM_DEBUG="debug";// NOI18N
52
static final String JavaDoc JVM_DEBUG_OPTION="debug-jvm-options";// NOI18N
53
static final String JavaDoc DEBUG_OPTIONS_ADDRESS = "address="; //NOI18N
54
static final String JavaDoc ISSHMEM = "transport=dt_shmem"; //NOI18N
55
static final String JavaDoc ISDTSOCKET = "transport=dt_socket"; //NOI18N
56

57 }
58
Popular Tags