KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > inversoft > verge > util > url > config > Constants


1 /*
2  * Copyright (c) 2003, Inversoft
3  *
4  * This software is distribuable under the GNU Lesser General Public License.
5  * For more information visit gnu.org.
6  */

7 package com.inversoft.verge.util.url.config;
8
9
10 /**
11  * <p>
12  * This interface holds the constants for the URL
13  * configuration system.
14  * </p>
15  *
16  * @author Brian Pontarelli
17  * @since 2.0
18  * @version 2.0
19  */

20 public interface Constants {
21
22     /**
23      * The name of the XML element for URL categories
24      */

25     String JavaDoc CATEGORY_ELEMENT = "category";
26     
27     /**
28      * The category name attribute
29      */

30     String JavaDoc NAME_ATTRIBUTE = "name";
31     
32     /**
33      * The protocol element name
34      */

35     String JavaDoc PROTOCOL_ELEMENT = "protocol";
36     
37     /**
38      * The host element name
39      */

40     String JavaDoc HOST_ELEMENT = "host";
41     
42     /**
43      * The port element name
44      */

45     String JavaDoc PORT_ELEMENT = "port";
46     
47     /**
48      * The context element name
49      */

50     String JavaDoc CONTEXT_ELEMENT = "context";
51 }
52
Popular Tags