View Javadoc

1   /*
2    * $Id: JasperReportConstants.java 440597 2006-09-06 03:34:39Z wsmoak $
3    *
4    * Copyright 2006 The Apache Software Foundation.
5    *
6    * Licensed under the Apache License, Version 2.0 (the "License");
7    * you may not use this file except in compliance with the License.
8    * You may obtain a copy of the License at
9    *
10   *      http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing, software
13   * distributed under the License is distributed on an "AS IS" BASIS,
14   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15   * See the License for the specific language governing permissions and
16   * limitations under the License.
17   */
18  package org.apache.struts2.views.jasperreports;
19  
20  
21  /***
22   * <code>JasperReportConstants</code>
23   *
24   */
25  public interface JasperReportConstants {
26  
27      /***
28       * PDF format constant
29       */
30      public static final String FORMAT_PDF = "PDF";
31  
32      /***
33       * XML format constant
34       */
35      public static final String FORMAT_XML = "XML";
36  
37      /***
38       * HTML format constant
39       */
40      public static final String FORMAT_HTML = "HTML";
41  
42      /***
43       * XLS format constant
44       */
45      public static final String FORMAT_XLS = "XLS";
46  
47      /***
48       * CSV format constant
49       */
50      public static final String FORMAT_CSV = "CSV";
51  }