KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > directory > ldapstudio > proxy > ProxyConstants


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.directory.ldapstudio.proxy;
21
22
23 /**
24  * This class contains all the constants used by the Proxy Plugin.
25  *
26  * @author <a HREF="mailto:dev@directory.apache.org">Apache Directory Project</a>
27  * @version $Rev$, $Date$
28  */

29 public interface ProxyConstants
30 {
31     /** The plugin ID */
32     public static final String JavaDoc PLUGIN_ID = "org.apache.directory.ldapstudio.proxy";
33     
34     /** The size of the Dialog History */
35     public static final int DIALOG_HISTORY_SIZE = 20;
36
37     /** The dialog setting key for Proxy Port History */
38     public static final String JavaDoc DIALOGSETTING_KEY_PROXY_PORT_HISTORY = "proxyPortHistory";
39
40     /** The dialog setting key for Server Host History */
41     public static final String JavaDoc DIALOGSETTING_KEY_SERVER_HOST_HISTORY = "serverHostHistory";
42
43     /** The dialog setting key for Server Port History */
44     public static final String JavaDoc DIALOGSETTING_KEY_SERVER_PORT_HISTORY = "serverPortHistory";
45
46     /** The dialog setting value for Use Connection */
47     public static final String JavaDoc DIALOGSETTING_KEY_SERVER_USE_CONNECTION = "useConnection";
48 }
49
Popular Tags