View Javadoc

1   /*
2    * To change this template, choose Tools | Templates
3    * and open the template in the editor.
4    */
5   
6   package com.rc.celeritas.impleo;
7   
8   /**
9    *
10   * @author rchoudhary
11   */
12  public class ImpleoConstants {
13      /**
14       *
15       */
16      public static final String TABLE = "table";
17      /**
18       *
19       */
20      public static final String PK = "pk";
21      /**
22       *
23       */
24      public static final String TROW = "trow";
25      /**
26       *
27       */
28      public static final String ORDER_BY = "order_by";
29      /**
30       * 
31       */
32      public static final String ROWS = "rows";
33      /**
34       *
35       */
36      public static final String SEQ = "seq";
37      /**
38       *
39       */
40      public static final String SUCCESS = "success";
41      /**
42       *
43       */
44      public static final String EMPTY_STRING = "";
45      /**
46       *
47       */
48      public static final String DATA = "data";
49      /**
50       *
51       */
52      public static final String COLUMNS = "columns";
53      /**
54       * SQL Reference to be used in pages and links
55       */
56      public static final String SQLREF = "sqlref";
57      /**
58       * Representing row in a table
59       */
60      public static final String ROW = "row";
61  }