1 /************************************************************
2 * Copyright *
3 * Portions of this software are Copyright (c) 1993 - 2002, *
4 * Chad Z. Hower (Kudzu) and the Indy Pit Crew *
5 * - http://www.nevrona.com/Indy/ *
6 ************************************************************/
7 package org.indy.http;
8
9 /***
10 *@author owen
11 */
12 public final class IdHTTPProtocolVersion {
13 /***
14 * Description of the Field
15 */
16 public final static IdHTTPProtocolVersion v1_0 = new IdHTTPProtocolVersion();
17
18 /***
19 * Description of the Field
20 */
21 public final static IdHTTPProtocolVersion v1_1 = new IdHTTPProtocolVersion();
22
23 private IdHTTPProtocolVersion() {
24 }
25 }
This page was automatically generated by Maven