01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */
17: package org.apache.cocoon.components.web3;
18:
19: /**
20: * Constants in Web3.
21: *
22: * @author <a href="mailto:michael.gerzabek@at.efp.cc">Michael Gerzabek</a>
23: * @since 2.1
24: * @version CVS $Id: Web3.java 524407 2007-03-31 10:59:28Z joerg $
25: */
26: public interface Web3 {
27:
28: String URI = "http://apache.org/cocoon/Web3-Rfc/1.0";
29:
30: String INCLUDE_ELEM = "include";
31: String INCLUDE_NAME_ATTR = "name";
32: String INCLUDE_CLASS_ATTR = "streamer";
33:
34: String IMPORT_ELEM = "import";
35: String EXPORT_ELEM = "export";
36: String TABLES_ELEM = "tables";
37:
38: String FIELD_ELEM = "field";
39: String FIELD_NAME_ATTR = "name";
40:
41: String ROW_ELEM = "row";
42: String ROW_ID_ATTR = "id";
43:
44: String STRUCTURE_ELEM = "structure";
45: String STRUCTURE_NAME_ATTR = "name";
46:
47: String TABLE_ELEM = "table";
48: String TABLE_NAME_ATTR = "name";
49:
50: String ABAP_EXCEPTION_ELEM = "abap-exception";
51: String PROCESSING_X_ELEM = "processing-exception";
52: }
|