OSDN Git Service

NeverNote 0.88.
[neighbornote/NeighborNote.git] / src / cx / fbn / nevernote / sql / requests / DBRunnerRequest.java
1 /*\r
2  * This file is part of NeverNote \r
3  * Copyright 2009 Randy Baumgarte\r
4  * \r
5  * This file may be licensed under the terms of of the\r
6  * GNU General Public License Version 2 (the ``GPL'').\r
7  *\r
8  * Software distributed under the License is distributed\r
9  * on an ``AS IS'' basis, WITHOUT WARRANTY OF ANY KIND, either\r
10  * express or implied. See the GPL for the specific language\r
11  * governing rights and limitations.\r
12  *\r
13  * You should have received a copy of the GPL along with this\r
14  * program. If not, go to http://www.gnu.org/licenses/gpl.html\r
15  * or write to the Free Software Foundation, Inc.,\r
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\r
17  *\r
18 */\r
19 \r
20 \r
21 package cx.fbn.nevernote.sql.requests;\r
22 \r
23 \r
24 public class DBRunnerRequest {\r
25         public static int GENERIC                       = 1;\r
26         public static int DATABASE                      = 2;\r
27         public static int DELETED_ITEM          = 3;\r
28         public static int NOTEBOOK                      = 4;\r
29         public static int TAG                           = 5;\r
30         public static int SAVED_SEARCH          = 6;\r
31         public static int NOTE                          = 7;\r
32         public static int RESOURCE                      = 8;\r
33         public static int NOTE_TAGS                     = 9;\r
34         public static int ENSEARCH                      = 10;\r
35         public static int WATCH_FOLDER          = 11;\r
36         public static int WORD                          = 12;\r
37         public static int Invalid_XML           = 13;\r
38         public static int Sync                          = 14;\r
39         \r
40         public volatile int requestor_id;\r
41         public volatile int category;\r
42         public volatile int type;\r
43         public volatile String request;\r
44 }\r