KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > sapia > soto > util > Schemes


1 package org.sapia.soto.util;
2
3 /**
4  * @author Yanick Duchesne
5  *
6  * <dl>
7  * <dt><b>Copyright:</b><dd>Copyright &#169; 2002-2004 <a HREF="http://www.sapia-oss.org">Sapia Open Source Software</a>. All Rights Reserved.</dd></dt>
8  * <dt><b>License:</b><dd>Read the license.txt file of the jar or visit the
9  * <a HREF="http://www.sapia-oss.org/license.html">license page</a> at the Sapia OSS web site</dd></dt>
10  * </dl>
11  */

12 public interface Schemes {
13     
14     public static final String JavaDoc SCHEME_RESOURCE = "resource";
15     public static final String JavaDoc SCHEME_FILE = "file";
16     public static final String JavaDoc SCHEME_HTTP = "http";
17     public static final String JavaDoc SCHEME_FTP = "ftp";
18
19 }
20
Popular Tags