KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > pentaho > plugin > core > StandardSettings


1 /*
2  * Copyright 2006 Pentaho Corporation. All rights reserved.
3  * This software was developed by Pentaho Corporation and is provided under the terms
4  * of the Mozilla Public License, Version 1.1, or any later version. You may not use
5  * this file except in compliance with the license. If you need a copy of the license,
6  * please go to http://www.mozilla.org/MPL/MPL-1.1.txt. The Original Code is the Pentaho
7  * BI Platform. The Initial Developer is Pentaho Corporation.
8  *
9  * Software distributed under the Mozilla Public License is distributed on an "AS IS"
10  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. Please refer to
11  * the license for the specific language governing your rights and limitations.
12  *
13  * @created Jan 26, 2006
14  * @author James Dixon
15  */

16
17 package org.pentaho.plugin.core;
18
19 public class StandardSettings {
20
21     public static final String JavaDoc SQL_QUERY = "query"; //$NON-NLS-1$
22

23     public static final String JavaDoc CONNECTION = "connection"; //$NON-NLS-1$
24

25     public static final String JavaDoc JNDI = "jndi"; //$NON-NLS-1$
26

27     public static final String JavaDoc DRIVER = "driver"; //$NON-NLS-1$
28

29     public static final String JavaDoc USERID = "user-id"; //$NON-NLS-1$
30

31     public static final String JavaDoc PASSWORD = "password"; //$NON-NLS-1$
32

33     public static final String JavaDoc MDX_QUERY = "mdx"; //$NON-NLS-1$
34

35     public static final String JavaDoc DATA_MODEL = "model"; //$NON-NLS-1$
36

37     public static final String JavaDoc QUERY_NAME = "query-name"; //$NON-NLS-1$
38

39     public static final String JavaDoc LIVE = "live"; //$NON-NLS-1$
40

41     public static final String JavaDoc DECIMAL_FORMAT_TYPE = "decimal"; //$NON-NLS-1$
42

43     public static final String JavaDoc DATE_FORMAT_TYPE = "date"; //$NON-NLS-1$
44

45     public static final String JavaDoc DEFAULT = "default"; //$NON-NLS-1$
46

47     public static final String JavaDoc OUTPUT_NAME = "output-name"; //$NON-NLS-1$
48

49     public static final String JavaDoc SOLUTION = "solution"; //$NON-NLS-1$
50

51     public static final String JavaDoc PATH = "path"; //$NON-NLS-1$
52

53     public static final String JavaDoc ACTION = "action"; //$NON-NLS-1$
54

55     public static final String JavaDoc PRINTER_NAME = "printer-name"; //$NON-NLS-1$
56

57     public static final String JavaDoc HANDLE_ALL_PROMPTS = "handle-all-prompts"; //$NON-NLS-1$
58
}
59
Popular Tags