KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > cocoon > components > web3 > Web3


1 /*
2  * Copyright 1999-2004 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 package org.apache.cocoon.components.web3;
17
18 /**
19  * Constants in Web3.
20  *
21  * @author <a HREF="mailto:michael.gerzabek@at.efp.cc">Michael Gerzabek</a>
22  * @since 2.1
23  * @version CVS $Id: Web3.java 30932 2004-07-29 17:35:38Z vgritsenko $
24  */

25 public interface Web3 {
26     
27     String JavaDoc URI = "http://apache.org/cocoon/Web3-Rfc/1.0";
28
29     String JavaDoc INCLUDE_ELEM = "include";
30     String JavaDoc INCLUDE_NAME_ATTR = "name";
31     String JavaDoc INCLUDE_CLASS_ATTR = "streamer";
32     
33     String JavaDoc IMPORT_ELEM = "import";
34     String JavaDoc EXPORT_ELEM = "export";
35     String JavaDoc TABLES_ELEM = "tables";
36     
37     String JavaDoc FIELD_ELEM = "field";
38     String JavaDoc FIELD_NAME_ATTR = "name";
39     
40     String JavaDoc ROW_ELEM = "row";
41     String JavaDoc ROW_ID_ATTR = "id";
42     
43     String JavaDoc STRUCTURE_ELEM = "structure";
44     String JavaDoc STRUCTURE_NAME_ATTR = "name";
45     
46     String JavaDoc TABLE_ELEM = "table";
47     String JavaDoc TABLE_NAME_ATTR = "name";
48
49     String JavaDoc ABAP_EXCEPTION_ELEM = "abap-exception";
50     String JavaDoc PROCESSING_X_ELEM = "processing-exception";
51 }
52
Popular Tags