01: /*
02: * Copyright 2006 Giordano Maestro (giordano.maestro@assetdata.it)
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License"); you may not
05: * use this file except in compliance with the License. You may obtain a copy of
06: * the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12: * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13: * License for the specific language governing permissions and limitations under
14: * the License.
15: */
16: package org.romaframework.aspect.reporting;
17:
18: import org.romaframework.aspect.view.ViewConstants;
19:
20: public class ReportingConstants {
21: public static final String RENDER_DEFAULT = ViewConstants.RENDER_DEFAULT;
22: public static final String RENDER_IMAGE = ViewConstants.RENDER_IMAGE;
23: public static final String RENDER_LIST = ViewConstants.RENDER_LIST;
24: public static final String RENDER_OBJECTEMBEDDED = ViewConstants.RENDER_OBJECTEMBEDDED;
25: public static final String RENDER_TABLE = ViewConstants.RENDER_TABLE;
26: public static final String RENDER_TEXT = ViewConstants.RENDER_TEXT;
27: public static final String LAYOUT_DEFAULT = ViewConstants.LAYOUT_DEFAULT;
28: public static final String LAYOUT_EXPAND = ViewConstants.LAYOUT_EXPAND;
29: public static final String DOCUMENT_TYPE_HTML = "html";
30: public static final String DOCUMENT_TYPE_PDF = "pdf";
31: public static final String DOCUMENT_TYPE_EXCEL = "xls";
32: public static final String DOCUMENT_TYPE_CSV = "csv";
33: public static final String DOCUMENT_TYPE_XML = "xml";
34: public static final String DOCUMENT_TYPE_DOC = "doc";
35: }
|