01: /****************************************************************
02: * Licensed to the Apache Software Foundation (ASF) under one *
03: * or more contributor license agreements. See the NOTICE file *
04: * distributed with this work for additional information *
05: * regarding copyright ownership. The ASF licenses this file *
06: * to you under the Apache License, Version 2.0 (the *
07: * "License"); you may not use this file except in compliance *
08: * with the License. You may obtain a copy of the License at *
09: * *
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: ****************************************************************/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 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 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 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 TMP_REPOSITORY = "TMP_REPOSITORY";
60:
61: /**
62: * Key for looking up the MailetLoader
63: */
64: public static final String MAILET_LOADER = "MAILET_LOADER";
65:
66: /**
67: * Key for looking up the MatchLoader
68: */
69: public static final String MATCH_LOADER = "MATCH_LOADER";
70:
71: /**
72: * Private constructor to prevent instantiation of the class
73: */
74: private Resources() {
75: }
76: }
|