KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > james > transport > Resources


1 /***********************************************************************
2  * Copyright (c) 1999-2004 The Apache Software Foundation. *
3  * All rights reserved. *
4  * ------------------------------------------------------------------- *
5  * Licensed under the Apache License, Version 2.0 (the "License"); you *
6  * may not use this file except in compliance with the License. You *
7  * may obtain a copy of the License at: *
8  * *
9  * http://www.apache.org/licenses/LICENSE-2.0 *
10  * *
11  * Unless required by applicable law or agreed to in writing, software *
12  * distributed under the License is distributed on an "AS IS" BASIS, *
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or *
14  * implied. See the License for the specific language governing *
15  * permissions and limitations under the License. *
16  ***********************************************************************/

17
18 package org.apache.james.transport;
19
20 /**
21  * A set of constants used inside the James transport.
22  *
23  * @version 1.0.0, 24/04/1999
24  */

25 public class Resources {
26
27     //Already defined in Constants
28
//public static final String SERVER_NAMES = "SERVER_NAMES";
29

30     /**
31      * Don't know what this is supposed to be.
32      *
33      * @deprecated this is unused
34      */

35     public static final String JavaDoc USERS_MANAGER = "USERS_MANAGER";
36
37     //Already defined in Constants
38
//public static final String POSTMASTER = "POSTMASTER";
39

40     /**
41      * Don't know what this is supposed to be.
42      *
43      * @deprecated this is unused
44      */

45     public static final String JavaDoc MAIL_SERVER = "MAIL_SERVER";
46
47     /**
48      * Don't know what this is supposed to be.
49      *
50      * @deprecated this is unused
51      */

52     public static final String JavaDoc TRANSPORT = "TRANSPORT";
53
54     /**
55      * Don't know what this is supposed to be.
56      *
57      * @deprecated this is unused
58      */

59     public static final String JavaDoc TMP_REPOSITORY = "TMP_REPOSITORY";
60
61     /**
62      * Key for looking up the MailetLoader
63      */

64     public static final String JavaDoc MAILET_LOADER = "MAILET_LOADER";
65
66     /**
67      * Key for looking up the MatchLoader
68      */

69     public static final String JavaDoc MATCH_LOADER = "MATCH_LOADER";
70
71     /**
72      * Private constructor to prevent instantiation of the class
73      */

74     private Resources() {}
75 }
76
Popular Tags