This project has retired. For details please refer to its Attic page.
PostBackConstants xref
View Javadoc
1   /*
2    * Copyright 2001-2013 The Apache Software Foundation.
3    * 
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    * 
8    *      http://www.apache.org/licenses/LICENSE-2.0
9    * 
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   *
16   */
17  package org.apache.juddi.webconsole;
18  
19  /**
20   * A collection of constants to use for form postbacks and parsing data from the
21   * browser All fields MUST not contain any characters that could interfer with
22   * the rendering of a webpage or javascript and should thus be escaped sequences
23   * of characters
24   *
25   * @author <a href="mailto:alexoree@apache.org">Alex O'Ree</a>
26   */
27  public interface PostBackConstants {
28  
29      public static final String INSTANCE = "instance";
30      public static final String ACCESSPOINT_TYPE = "accessPointType";
31      public static final String ACCESSPOINT_VALUE = "accessPointValue";
32      @Deprecated
33      public static final String HOSTINGREDIRECTOR = "hostingRedirector";
34      public static final String OVERVIEW = "overviewDoc";
35      public static final String TMODELINSTANCE = "tmodelInstance";
36      public static final String BINDINGTEMPLATE = "bindingTemplate";
37      public static final String BINDINGKEY = "bindingKey";
38      public static final String BUSINESSKEY = "businessKey";
39      public static final String SERVICEKEY = "serviceKey";
40      //public static final String CLICK_TO_EDIT = "Click to edit";
41      public static final String DESCRIPTION = "Description";
42      public static final String DISCOVERYURL = "disco";
43      public static final String PHONE = "Phone";
44      public static final String ADDRESS = "Address";
45      public static final String ADDRESSLINE = "addressLine";
46      public static final String CONTACT_PREFIX = "contact";
47      public static final String NAME = "Name";
48      public static final String LANG = "Lang";
49      public static final String VALUE = "Value";
50      public static final String TYPE = "Type";
51      public static final String EMAIL = "Email";
52      public static final String SORTCODE = "Sortcode";
53      public static final String KEYNAME = "KeyName";
54      public static final String DISPLAYNAME = "DisplayName";
55      public static final String KEYVALUE = "KeyValue";
56      public static final String CATBAG_KEY_REF = "catbagkeyref";
57      public static final String IDENT_KEY_REF = "identbagkeyref";
58      public static final String CATBAG_KEY_REF_GRP = "catbaggrpkeyref";
59      public static final String KEY_REF = "keyref";
60      public static final String TMODEL_DELETED = "isDeleted";
61      
62  
63  }