1 /*****************************************************************
2 * Licensed to the Apache Software Foundation (ASF) under one *
3 * or more contributor license agreements. See the NOTICE file *
4 * distributed with this work for additional information *
5 * regarding copyright ownership. The ASF licenses this file *
6 * to you under the Apache License, Version 2.0 (the *
7 * "License"); you may not use this file except in compliance *
8 * with the License. You may obtain a copy of the License at *
9 * *
10 * http://www.apache.org/licenses/LICENSE-2.0 *
11 * *
12 * Unless required by applicable law or agreed to in writing, *
13 * software distributed under the License is distributed on an *
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY *
15 * KIND, either express or implied. See the License for the *
16 * specific language governing permissions and limitations *
17 * under the License. *
18 ****************************************************************/
19
20 package org.apache.james.transport;
21
22 /***
23 * A set of constants used inside the James transport.
24 *
25 * @version 1.0.0, 24/04/1999
26 */
27 public class Resources {
28
29
30
31
32 /***
33 * Don't know what this is supposed to be.
34 *
35 * @deprecated this is unused
36 */
37 public static final String USERS_MANAGER = "USERS_MANAGER";
38
39
40
41
42 /***
43 * Don't know what this is supposed to be.
44 *
45 * @deprecated this is unused
46 */
47 public static final String MAIL_SERVER = "MAIL_SERVER";
48
49 /***
50 * Don't know what this is supposed to be.
51 *
52 * @deprecated this is unused
53 */
54 public static final String TRANSPORT = "TRANSPORT";
55
56 /***
57 * Don't know what this is supposed to be.
58 *
59 * @deprecated this is unused
60 */
61 public static final String TMP_REPOSITORY = "TMP_REPOSITORY";
62
63 /***
64 * Key for looking up the MailetLoader
65 */
66 public static final String MAILET_LOADER = "MAILET_LOADER";
67
68 /***
69 * Key for looking up the MatchLoader
70 */
71 public static final String MATCH_LOADER = "MATCH_LOADER";
72
73 /***
74 * Private constructor to prevent instantiation of the class
75 */
76 private Resources() {}
77 }