KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ajaxanywhere > AAConstants


1 /*
2 Copyright 2005 Vitaliy Shevchuk (shevit@users.sourceforge.net)
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
18 package org.ajaxanywhere;
19
20 /**
21  * Date: 23 juil. 2005
22  * Time: 21:36:48
23  */

24 public interface AAConstants {
25
26     String JavaDoc REFRESH_ZONES_KEY = "AjaxAnywhere.refreshZones";
27     String JavaDoc REFRESH_ALL_KEY = "AjaxAnywhere.refreshAll";
28     String JavaDoc ZONE_CONTENT_KEY_PREFIX = "AjaxAnywhere.zoneContent.";
29
30     String JavaDoc AJAX_URL_INDETIFIER = "aaxmlrequest";
31     String JavaDoc ZONES_URL_KEY = "aazones";
32     String JavaDoc ZONE_HTML_ID_PREFIX = "aazone.";
33
34     String JavaDoc END_OF_ZONE_PREFIX = "<!-- @end of zone [";
35     String JavaDoc END_OF_ZONE_SUFFIX = "]@ --></div>";
36
37     //constants used in the XML content returned to the client
38
String JavaDoc AA_XML_ZONES = "zones";
39     String JavaDoc AA_XML_ZONE = "zone";
40     String JavaDoc AA_XML_NAME = "name";
41     String JavaDoc AA_XML_ID= "id";
42     String JavaDoc AA_XML_SCRIPT = "script";
43     String JavaDoc AA_XML_IMAGE = "image";
44     String JavaDoc AA_XML_EXCEPTION = "exception";
45     String JavaDoc AA_XML_TYPE = "type";
46     String JavaDoc AA_XML_REDIRECT = "redirect";
47     
48 }
49
Popular Tags