creatorextension/com.nokia.s60tools.creator/src/com/nokia/s60tools/creator/components/connectionmethod/ConnectionMethodVariables.java
author dpodwall
Tue, 12 Jan 2010 13:17:53 -0600
changeset 0 61163b28edca
permissions -rw-r--r--
initial EPL conversion
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     1
/*
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     2
* Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies). 
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     3
* All rights reserved.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     4
* This component and the accompanying materials are made available
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     5
* under the terms of "Eclipse Public License v1.0"
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     6
* which accompanies this distribution, and is available
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     8
*
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     9
* Initial Contributors:
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    10
* Nokia Corporation - initial contribution.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    11
*
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    12
* Contributors:
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    13
*
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    14
* Description:
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    15
*
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    16
*/
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    17
 
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    18
package com.nokia.s60tools.creator.components.connectionmethod;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    19
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    20
import java.util.LinkedHashMap;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    21
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    22
import com.nokia.s60tools.creator.components.AbstractVariables;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    23
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    24
/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    25
 * Variables for connection method
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    26
 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    27
public class ConnectionMethodVariables extends AbstractVariables {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    28
	
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    29
	//
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    30
	// Variables for XML element names
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    31
	//
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    32
	public static final String USEPROXY_XML_ELEMENT = "useproxy";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    33
	public static final String PROMPTPASSWORD_XML_ELEMENT = "promptpassword";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    34
	public static final String SECUREAUTHENTICATION_XML_ELEMENT = "secureauthentication";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    35
	public static final String DISABLE_TEXT_AUTH_XML_ELEMENT = "disabletextauth";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    36
	public static final String WAPWSOPTION_XML_ELEMENT = "wapwspoption";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    37
	public static final String DATACALLLINESPEED_XML_ELEMENT = "datacalllinespeed";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    38
	public static final String DATACALLTYPEISDN_XML_ELEMENT = "datacalltypeisdn";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    39
	public static final String PROTOCOLLTYPE_XML_ELEMENT = "protocoltype";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    40
	public static final String BEARERTYPE_XML_ELEMENT = "bearertype";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    41
	
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    42
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    43
	 * Only instance of this class
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    44
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    45
	private static ConnectionMethodVariables instance;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    46
	
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    47
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    48
	 * Get Singleton instance of variables
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    49
	 * @return 
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    50
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    51
	public static ConnectionMethodVariables getInstance() {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    52
		
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    53
		if(instance == null){
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    54
			instance = new ConnectionMethodVariables();
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    55
		}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    56
		
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    57
		return instance;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    58
	}	
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    59
	
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    60
	private ConnectionMethodVariables(){
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    61
		init();
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    62
		initFixedValues();		
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    63
		initMaxOccurValues();
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    64
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    65
	
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    66
	//
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    67
	// Variables to show in UI
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    68
	//
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    69
	public static final String	CONNECTIONNAME	= "Connection name";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    70
	public static final String	BEARERTYPE	= "Bearer type";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    71
	public static final String	STARTPAGE	= "Start page";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    72
	public static final String	WAPWSPOPTION	= "WAP WSP option";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    73
	public static final String	PROTOCOLTYPE	= "Protocol type";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    74
	public static final String	SECUREAUTHENTICATION	= "Secure authentication";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    75
	public static final String	LOGINNAME	= "Login name";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    76
	public static final String	LOGINPASS	= "Login password";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    77
	public static final String	PROMPTPASSWORD	= "Prompt password";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    78
	public static final String	GATEWAYADDRESS	= "Gateway address";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    79
	public static final String	SUBNETMASK	= "Subnetmask";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    80
	public static final String	DEVICEIPADDR	= "Device IP address";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    81
	public static final String	IP4NAMESERVER1	= "IP v4 primary nameserver";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    82
	public static final String	IP4NAMESERVER2	= "IP v4 secondary nameserver";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    83
	public static final String	DATACALLTELNUMBER	= "Datacall phone number";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    84
	public static final String	DATACALLTYPEISDN	= "Datacall ISDN type";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    85
	public static final String	DATACALLLINESPEED	= "Datacall line speed";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    86
	public static final String	USEPROXY	= "Use proxy";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    87
	public static final String	PROXYSERVERADDRESS	= "Proxy server address";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    88
	public static final String	PROXYPORTNUMBER	= "Proxy port number";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    89
	public static final String	IP6NAMESERVER1	= "IP v6 primary nameserver";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    90
	public static final String	IP6NAMESERVER2	= "IP v6 secondary nameserver";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    91
	public static final String	DISABLETEXTAUTH	= "Disable plaintext authentication";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    92
	public static final String	WLANNAME	= "SSID of WLAN connection";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    93
	public static final String	WLANIPADDR	= "IP address of Device";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    94
	public static final String	WLANSECMODE	= "WLAN Security mode";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    95
	public static final String	WLANNETMODE	= "WLAN Network mode";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    96
	
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    97
	//
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    98
	// Fixed variables for certain item in UI
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    99
	//
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   100
	public static final String ALL_BEARERTYPE_TYPES_AS_COMMA_SEPARATED_STRING [] = {"WLAN", "GPRS", "Datacall", "HSGSM", "Embedded", "VPN", "LAN"};
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   101
	public static final String ALL_PROTOCOLTYPE_TYPES_AS_COMMA_SEPARATED_STRING [] = {"IPV4", "IPV6"};
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   102
	public static final String ALL_DATACALLTYPEISDN_TYPES_AS_COMMA_SEPARATED_STRING [] = {"Analogue", "ISDNv110", "ISDNv120"};
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   103
	public static final String ALL_DATACALLLINESPEED_TYPES_AS_COMMA_SEPARATED_STRING [] = {"AUTOMATIC", "9600", "14400", "19200", "28800", "38400", "43200", "56000"};
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   104
	public static final String ALL_WAPWSPOPTION_TYPES_AS_COMMA_SEPARATED_STRING [] = {"Connectionless", "Connectionoriented"};
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   105
	
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   106
	
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   107
	
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   108
	private void init() {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   109
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   110
		items = new LinkedHashMap<String, String>(27);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   111
		items.put("connectionname", CONNECTIONNAME	);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   112
		items.put(BEARERTYPE_XML_ELEMENT, BEARERTYPE	);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   113
		items.put("startpage", STARTPAGE	);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   114
		items.put(WAPWSOPTION_XML_ELEMENT, WAPWSPOPTION	);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   115
		items.put(PROTOCOLLTYPE_XML_ELEMENT, PROTOCOLTYPE	);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   116
		items.put("loginname", LOGINNAME	);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   117
		items.put(SECUREAUTHENTICATION_XML_ELEMENT, SECUREAUTHENTICATION	);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   118
		items.put("loginpass", LOGINPASS	);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   119
		items.put(PROMPTPASSWORD_XML_ELEMENT, PROMPTPASSWORD	);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   120
		items.put("gatewayaddress", GATEWAYADDRESS	);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   121
		items.put("subnetmask", SUBNETMASK	);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   122
		items.put("deviceipaddr", DEVICEIPADDR	);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   123
		items.put("ip4nameserver1", IP4NAMESERVER1	);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   124
		items.put("ip4nameserver2", IP4NAMESERVER2	);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   125
		items.put("datacalltelnumber", DATACALLTELNUMBER	);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   126
		items.put(DATACALLTYPEISDN_XML_ELEMENT, DATACALLTYPEISDN	);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   127
		items.put(DATACALLLINESPEED_XML_ELEMENT, DATACALLLINESPEED	);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   128
		items.put(USEPROXY_XML_ELEMENT, USEPROXY	);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   129
		items.put("proxyserveraddress", PROXYSERVERADDRESS	);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   130
		items.put("proxyportnumber", PROXYPORTNUMBER	);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   131
		items.put("ip6nameserver1", IP6NAMESERVER1	);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   132
		items.put("ip6nameserver2", IP6NAMESERVER2	);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   133
		items.put(DISABLE_TEXT_AUTH_XML_ELEMENT, DISABLETEXTAUTH	);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   134
		items.put("wlanname", WLANNAME	);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   135
		items.put("wlanipaddr", WLANIPADDR	);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   136
		items.put("wlansecmode", WLANSECMODE	);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   137
		items.put("wlannetmode", WLANNETMODE	);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   138
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   139
	
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   140
	private void initFixedValues(){
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   141
		itemsValues = new LinkedHashMap<String, String[]>(4);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   142
		itemsValues.put(BEARERTYPE_XML_ELEMENT, ALL_BEARERTYPE_TYPES_AS_COMMA_SEPARATED_STRING);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   143
		itemsValues.put(PROTOCOLLTYPE_XML_ELEMENT, ALL_PROTOCOLTYPE_TYPES_AS_COMMA_SEPARATED_STRING);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   144
		itemsValues.put(DATACALLTYPEISDN_XML_ELEMENT, ALL_DATACALLTYPEISDN_TYPES_AS_COMMA_SEPARATED_STRING);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   145
		itemsValues.put(DATACALLLINESPEED_XML_ELEMENT, ALL_DATACALLLINESPEED_TYPES_AS_COMMA_SEPARATED_STRING);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   146
		itemsValues.put(WAPWSOPTION_XML_ELEMENT, ALL_WAPWSPOPTION_TYPES_AS_COMMA_SEPARATED_STRING);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   147
		itemsValues.put(DISABLE_TEXT_AUTH_XML_ELEMENT, YES_NO_TYPES_AS_COMMA_SEPARATED_STRING);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   148
		itemsValues.put(SECUREAUTHENTICATION_XML_ELEMENT, YES_NO_TYPES_AS_COMMA_SEPARATED_STRING);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   149
		itemsValues.put(PROMPTPASSWORD_XML_ELEMENT, YES_NO_TYPES_AS_COMMA_SEPARATED_STRING);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   150
		itemsValues.put(USEPROXY_XML_ELEMENT, YES_NO_TYPES_AS_COMMA_SEPARATED_STRING);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   151
		
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   152
	}	
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   153
	
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   154
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   155
	 * Inits Max Occur values for items, all items can occur only once.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   156
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   157
	private void initMaxOccurValues(){
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   158
		maxOccur = new LinkedHashMap<String, Integer>(4);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   159
		
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   160
		Integer integerOne = new Integer (1);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   161
		
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   162
		maxOccur.put( CONNECTIONNAME	, integerOne );
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   163
		maxOccur.put( BEARERTYPE	, integerOne );
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   164
		maxOccur.put( STARTPAGE	, integerOne );
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   165
		maxOccur.put( WAPWSPOPTION	, integerOne );
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   166
		maxOccur.put( PROTOCOLTYPE	, integerOne );
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   167
		maxOccur.put( LOGINNAME	, integerOne );
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   168
		maxOccur.put( SECUREAUTHENTICATION	, integerOne );
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   169
		maxOccur.put( LOGINPASS	, integerOne );
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   170
		maxOccur.put( PROMPTPASSWORD	, integerOne );
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   171
		maxOccur.put( GATEWAYADDRESS	, integerOne );
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   172
		maxOccur.put( SUBNETMASK	, integerOne );
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   173
		maxOccur.put( DEVICEIPADDR	, integerOne );
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   174
		maxOccur.put( IP4NAMESERVER1	, integerOne );
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   175
		maxOccur.put( IP4NAMESERVER2	, integerOne );
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   176
		maxOccur.put( DATACALLTELNUMBER	, integerOne );
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   177
		maxOccur.put( DATACALLTYPEISDN	, integerOne );
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   178
		maxOccur.put( DATACALLLINESPEED	, integerOne );
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   179
		maxOccur.put( USEPROXY	, integerOne );
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   180
		maxOccur.put( PROXYSERVERADDRESS	, integerOne );
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   181
		maxOccur.put( PROXYPORTNUMBER	, integerOne );
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   182
		maxOccur.put( IP6NAMESERVER1	, integerOne );
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   183
		maxOccur.put( IP6NAMESERVER2	, integerOne );
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   184
		maxOccur.put( DISABLETEXTAUTH	, integerOne );
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   185
		maxOccur.put( WLANNAME	, integerOne );
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   186
		maxOccur.put( WLANIPADDR	, integerOne );
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   187
		maxOccur.put( WLANSECMODE	, integerOne );
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   188
		maxOccur.put( WLANNETMODE	, integerOne );		
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   189
		
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   190
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   191
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   192
	protected AbstractVariables getInstanceImpl() {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   193
		return instance;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   194
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   195
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   196
}