01: /* Generated By:JavaCC: Do not edit this line. DavIfConstants.java */
02: /*
03: * $Id : $
04: * $Source : $
05: * $Log: DavIfConstants.java,v $
06: * Revision 1.3 2005/11/30 11:27:25 ss150821
07: * 6356996 - Srap Code base needs to save files in the unix file format and not windows
08: *
09: * Revision 1.2 2005/02/23 09:03:11 ss150821
10: * RFE 6223490 - SRA Should use JDK based logging
11: *
12: * Revision 1.1 2003/04/15 05:22:10 mm132998
13: * WebDAV support
14: *
15: *
16: */
17: package com.sun.portal.rproxy.connectionhandler.webdav;
18:
19: public interface DavIfConstants {
20:
21: int EOF = 0;
22:
23: int IFTOKEN = 5;
24:
25: int COLON = 6;
26:
27: int LEFTBRACKET = 7;
28:
29: int RIGHTBRACKET = 8;
30:
31: int LEFTSQUAREBRACKET = 9;
32:
33: int RIGHTSQUAREBRACKET = 10;
34:
35: int DEFAULT = 0;
36:
37: String[] tokenImage = { "<EOF>", "\" \"", "\"\\t\"", "\"\\n\"",
38: "\"\\r\"", "\"If\"", "\":\"", "\"(\"", "\")\"", "\"[\"",
39: "\"]\"", "\"Not\"", "\"CodedURL\"",
40: "\"Entity-Tag-String\"", };
41:
42: }
|