Revision 5339 trunk/extensions/extWFS2/src/com/iver/cit/gvsig/gui/wizards/WFSWizardData.java

View differences:

WFSWizardData.java
55 55
 *
56 56
 * $Id$
57 57
 * $Log$
58
 * Revision 1.3  2006-05-19 12:58:03  jorpiell
58
 * Revision 1.4  2006-05-23 08:09:53  jorpiell
59
 * Se ha cambiado la forma en la que se leian los valores seleccionados en los paneles y se ha cambiado el comportamiento de los botones
60
 *
61
 * Revision 1.3  2006/05/19 12:58:03  jorpiell
59 62
 * Modificados algunos paneles
60 63
 *
61 64
 * Revision 1.2  2006/04/20 16:38:24  jorpiell
......
74 77
	private String title = null;
75 78
	private String _abstract = null;
76 79
	private String serverVersion = null;
80
	private int buffer = 0;
81
	private int timeOut = 0;
82
	private String UserName = null;
77 83
	
78 84
	/**
79 85
	 * 
......
174 180
		}
175 181
		return "WFS "+ serverVersion;
176 182
	}
183

  
184
	/**
185
	 * @return Returns the buffer.
186
	 */
187
	public int getBuffer() {
188
		return buffer;
189
	}
190

  
191
	/**
192
	 * @param buffer The buffer to set.
193
	 */
194
	public void setBuffer(int buffer) {
195
		this.buffer = buffer;
196
	}
197

  
198
	/**
199
	 * @return Returns the timeOut.
200
	 */
201
	public int getTimeOut() {
202
		return timeOut;
203
	}
204

  
205
	/**
206
	 * @param timeOut The timeOut to set.
207
	 */
208
	public void setTimeOut(int timeOut) {
209
		this.timeOut = timeOut;
210
	}
211

  
212
	/**
213
	 * @return Returns the userName.
214
	 */
215
	public String getUserName() {
216
		return UserName;
217
	}
218

  
219
	/**
220
	 * @param userName The userName to set.
221
	 */
222
	public void setUserName(String userName) {
223
		UserName = userName;
224
	}
177 225
	
178 226
	
179 227
	

Also available in: Unified diff