KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > j2ee > sun > share > configbean > customizers > common > HelpContext


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  * HelpContext.java
21  *
22  * Created on March 25, 2004, 9:39 PM
23  */

24
25 package org.netbeans.modules.j2ee.sun.share.configbean.customizers.common;
26
27 /**
28  *
29  * @author Peter Williams
30  */

31 public class HelpContext {
32
33     public static final String JavaDoc HELP_WEBAPP_IDEMPOTENTURLPATTERN_POPUP="AS_CFG_WebAppIdempotentUrlPatternProperty";
34     public static final String JavaDoc HELP_WEBAPP_JSPCONFIG_POPUP = "AS_CFG_WebAppJspConfigProperty";
35     public static final String JavaDoc HELP_WEBAPP_PROPERTY_POPUP = "AS_CFG_WebAppProperty";
36     public static final String JavaDoc HELP_WEBAPP_CLASSLOADER_PROPERTY_POPUP = "AS_CFG_WebAppClassloaderProperty";
37     public static final String JavaDoc HELP_SESSIONCONFIG_MANAGER_POPUP = "AS_CFG_SessionConfigurationManagerProperty";
38     public static final String JavaDoc HELP_SESSIONCONFIG_STORE_POPUP = "AS_CFG_SessionConfigurationStoreProperty";
39     public static final String JavaDoc HELP_SESSIONCONFIG_SESSION_POPUP = "AS_CFG_SessionConfigurationSessionProperty";
40     public static final String JavaDoc HELP_SESSIONCONFIG_COOKIE_POPUP = "AS_CFG_SessionConfigurationCookieProperty";
41     public static final String JavaDoc HELP_WEBAPP_SERVICE_DESCRIPTION_POPUP = "AS_CFG_WebAppWebserviceDescription";
42     public static final String JavaDoc HELP_WEBAPP_MESSAGE_DESTINATION_POPUP = "AS_CFG_WebAppMessageDestination";
43     public static final String JavaDoc HELP_WEBAPP_MESSAGE_DESTINATION_REF_POPUP = "AS_CFG_WebAppMessageDestinationRef";
44     public static final String JavaDoc HELP_WEBAPP_LOCALE_MAPPING_POPUP = "AS_CFG_WebAppLocaleCharsetMapping";
45     public static final String JavaDoc HELP_CACHE_PROPERTY_POPUP = "AS_CFG_WebAppCacheProperty";
46     public static final String JavaDoc HELP_CACHE_DEFAULT_HELPER_POPUP = "AS_CFG_WebAppCacheDefaultHelperProperty";
47     public static final String JavaDoc HELP_CACHE_HELPER_DEFINITION_POPUP = "AS_CFG_WebAppCacheHelperDefinition";
48     public static final String JavaDoc HELP_CACHE_HELPER_PROPERTY_POPUP = "AS_CFG_WebAppCacheHelperProperty";
49     public static final String JavaDoc HELP_CACHE_MAPPING_POLICY_POPUP = "AS_CFG_WebAppCacheMappingPolicy";
50     public static final String JavaDoc HELP_CACHE_MAPPING_DISPATCHER_POPUP = "AS_CFG_WebAppCacheMappingDispatcherField";
51     public static final String JavaDoc HELP_CACHE_MAPPING_KEYFIELD_POPUP = "AS_CFG_WebAppCacheMappingKeyField";
52     public static final String JavaDoc HELP_CACHE_MAPPING_CONSTRAINT_POPUP = "AS_CFG_WebAppCacheMappingConstraintField";
53     public static final String JavaDoc HELP_CACHE_MAPPING_CONSTRAINT_VALUE_POPUP = "AS_CFG_WebAppCacheMappingConstraintFieldValue";
54     public static final String JavaDoc HELP_SERVLET_SERVICE_ENDPOINT_POPUP = "AS_CFG_ServletWebServiceEndpoint";
55     public static final String JavaDoc HELP_SERVICE_ENDPOINT_POPUP = "AS_CFG_WebServiceEndpoint";
56     public static final String JavaDoc HELP_SERVICE_ENDPOINT_SECURITY = "AS_CFG_WebServiceEndpointSecurity";
57     public static final String JavaDoc HELP_SERVICE_ENDPOINT_SECURITY_POPUP = "AS_CFG_WebServiceEndpointMessageSecurity";
58     public static final String JavaDoc HELP_SERVICE_CALL_PROPERTY_POPUP = "AS_CFG_ServiceRefCallProperty";
59     public static final String JavaDoc HELP_SERVICE_PORT_STUB_PROPERTY_POPUP = "AS_CFG_ServiceRefPortInfoStubProperty";
60     public static final String JavaDoc HELP_SERVICE_PORT_CALL_PROPERTY_POPUP = "AS_CFG_ServiceRefPortInfoCallProperty";
61     public static final String JavaDoc HELP_SECURITY_NEW_PRINCIPAL = "AS_CFG_SecurityRoleNewPrincipal";
62     public static final String JavaDoc HELP_SECURITY_EDIT_PRINCIPAL = "AS_CFG_SecurityRoleEditPrincipal";
63     public static final String JavaDoc HELP_SECURITY_NEW_GROUP = "AS_CFG_SecurityRoleNewGroup";
64     public static final String JavaDoc HELP_SECURITY_EDIT_GROUP = "AS_CFG_SecurityRoleEditGroup";
65
66     // FIXME help id's added ad-hoc to make code compile - need to reevaluate
67
// when ui spec is done for application, app-client, and connector.
68
public static final String JavaDoc HELP_APPCLIENT_MESSAGE_DESTINATION_POPUP = "AS_CFG_AppClientMessageDestination";
69     public static final String JavaDoc HELP_CONNECTOR_PROPERTY_POPUP = "AS_CFG_ConnectorProperty";
70     public static final String JavaDoc HELP_CONNECTOR_MAPELEMENT_POPUP = "AS_CFG_ConnectorMapElement";
71     public static final String JavaDoc HELP_EJBJAR_PM_DESCRIPTOR_POPUP = "AS_CFG_EjbJarPmDescriptor";
72
73     public static final String JavaDoc HELP_EJBJAR_CMP_PROPERTY_POPUP = "AS_CFG_EjbJarCmpProperty";
74     public static final String JavaDoc HELP_EJBJAR_SCHEMA_PROPERTY_POPUP = "AS_CFG_EjbJarCmpSchemaProperty";
75
76     /** Creates a new instance of HelpContext */
77     private HelpContext() {
78     }
79 }
80
Popular Tags