View Javadoc

1   /*
2    * 04/29/2003
3    * 
4    * This file is now part of XNap, but is based on:
5    *
6    * WSXServerlistReader.java
7    * Copyright (C) 2003 Frederik Zimmer
8    * tristian@users.sourceforge.net
9    * http://sourceforge.net/projects/ziga/
10   *
11   * This program is free software; you can redistribute it and/or
12   * modify it under the terms of the GNU General Public License
13   * as published by the Free Software Foundation; either version 2
14   * of the License, or any later version.
15   *
16   * This program is distributed in the hope that it will be useful,
17   * but WITHOUT ANY WARRANTY; without even the implied warranty of
18   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19   * GNU General Public License for more details.
20   *
21   * You should have received a copy of the GNU General Public License
22   * along with this program; if not, write to the Free Software
23   * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
24   */
25  package org.xnap.plugin.opennap.net;
26  
27  public interface WSXFile {
28  
29  	//--- Constant(s) ---
30  
31  	String NETWORK = "N";
32  	String PORT = "P";
33  	String ADDRESS = "A";
34  	String TYPE = "T";
35  	String AUTO_CONNECT = "AC";
36  	String USERNAME = "UN";
37  	String USER_PASSWORD = "UP";
38  	String NAME_VALUE_DELIM = ": ";
39  	String NOT_AVAILABLE = "N/A";
40  	String TYPE_NORMAL = "NORMAL";
41  	String TYPE_META = "META";
42  
43  	String CLIENT_INFO = "V";
44  
45  }
46  
47  
48  
49  
50