KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > j2ee > sun > share > configbean > customizers > ejbmodule > MdbConnectionFactoryPanel


1 /*
2  * The contents of this file are subject to the terms of the Common Development
3  * and Distribution License (the License). You may not use this file except in
4  * compliance with the License.
5  *
6  * You can obtain a copy of the License at http://www.netbeans.org/cddl.html
7  * or http://www.netbeans.org/cddl.txt.
8  *
9  * When distributing Covered Code, include this CDDL Header Notice in each file
10  * and include the License file at http://www.netbeans.org/cddl.txt.
11  * If applicable, add the following below the CDDL Header, with the fields
12  * enclosed by brackets [] replaced by your own identifying information:
13  * "Portions Copyrighted [year] [name of copyright owner]"
14  *
15  * The Original Software is NetBeans. The Initial Developer of the Original
16  * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
17  * Microsystems, Inc. All Rights Reserved.
18  */

19 /*
20  * MdbConnectionFactoryPanel.java October 27, 2003, 3:59 PM
21  *
22  */

23
24 package org.netbeans.modules.j2ee.sun.share.configbean.customizers.ejbmodule;
25
26 import java.util.ArrayList JavaDoc;
27 import java.util.ResourceBundle JavaDoc;
28
29 import org.netbeans.modules.j2ee.sun.dd.api.common.DefaultResourcePrincipal;
30 import org.netbeans.modules.j2ee.sun.dd.api.ejb.MdbConnectionFactory;
31
32 import org.netbeans.modules.j2ee.sun.share.configbean.customizers.common.BaseCustomizer;
33 import org.netbeans.modules.j2ee.sun.share.configbean.customizers.common.ErrorSupport;
34 import org.netbeans.modules.j2ee.sun.share.configbean.customizers.common.ErrorSupportClient;
35 import org.netbeans.modules.j2ee.sun.share.configbean.customizers.common.ValidationSupport;
36
37
38 /**
39  *
40  * @author Rajeshwar Patil
41  * @version %I%, %G%
42  */

43 public class MdbConnectionFactoryPanel extends javax.swing.JPanel JavaDoc
44                 implements ErrorSupportClient {
45
46     private MDEjbCustomizer mdEjbCutomizer;
47     protected ErrorSupport errorSupport;
48     protected ValidationSupport validationSupport;
49
50     static final ResourceBundle JavaDoc bundle =
51         ResourceBundle.getBundle(
52             "org.netbeans.modules.j2ee.sun.share.configbean.customizers.ejbmodule.Bundle"); // NOI18N
53

54
55     /** Creates new form MdbConnectionFactoryPanel */
56     public MdbConnectionFactoryPanel(MDEjbCustomizer customizer) {
57         initComponents();
58         this.mdEjbCutomizer = customizer;
59         errorSupport = new ErrorSupport(this);
60         validationSupport = new ValidationSupport();
61     }
62
63
64     public void setValues(MdbConnectionFactory mdbConnectionFactory){
65         if(mdbConnectionFactory != null){
66             String JavaDoc jndiName = mdbConnectionFactory.getJndiName();
67             if(jndiName != null){
68                 jndiNameTextField.setText(jndiName);
69             }
70             
71             setDefaultResourcePrincipal(
72                 mdbConnectionFactory.getDefaultResourcePrincipal());
73         }
74     }
75   
76
77     public java.awt.Container JavaDoc getErrorPanelParent(){
78         return this;
79     }
80
81
82     public java.awt.GridBagConstraints JavaDoc getErrorPanelConstraints(){
83         java.awt.GridBagConstraints JavaDoc gridBagConstraints = new java.awt.GridBagConstraints JavaDoc();
84         gridBagConstraints.gridwidth = java.awt.GridBagConstraints.REMAINDER;
85         gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL;
86         gridBagConstraints.weightx = 1.0;
87         gridBagConstraints.insets = new java.awt.Insets JavaDoc(6,12,11,11);
88         return gridBagConstraints;
89     }
90
91
92     public java.util.Collection JavaDoc getErrors(){
93         if(validationSupport == null) assert(false);
94         ArrayList JavaDoc errors = new ArrayList JavaDoc();
95
96         //Mdb Connection Factory fields Validation
97

98         String JavaDoc property;
99         boolean mdbConnectionFactoryPresent = isMdbConnectionFactoryPresent();
100         if(mdbConnectionFactoryPresent){
101             property = jndiNameTextField.getText();
102             errors.addAll(validationSupport.validate(property,
103                 "/sun-ejb-jar/enterprise-beans/ejb/mdb-connection-factory/jndi-name", //NOI18N
104
bundle.getString("LBL_Jndi_Name"))); //NOI18N
105
}
106
107         boolean resourcePrincipalPresent = isDefaultResourcePrincipalPresent();
108         if(resourcePrincipalPresent){
109             property = nameTextField.getText();
110             errors.addAll(validationSupport.validate(property,
111                 "/sun-ejb-jar/enterprise-beans/ejb/mdb-connection-factory/default-resource-principal/name", //NOI18N
112
bundle.getString("LBL_Name"))); //NOI18N
113

114             property = passwordTextField.getText();
115             errors.addAll(validationSupport.validate(property,
116                 "/sun-ejb-jar/enterprise-beans/ejb/mdb-connection-factory/default-resource-principal/password", //NOI18N
117
bundle.getString("LBL_Password"))); //NOI18N
118

119         }
120
121         return errors;
122     }
123     
124     public java.awt.Color JavaDoc getMessageForegroundColor() {
125         return BaseCustomizer.getErrorForegroundColor();
126     }
127
128     private boolean isMdbConnectionFactoryPresent(){
129         boolean mdbConnectionFactoryPresent = false;
130         String JavaDoc property = jndiNameTextField.getText();
131         while(true){
132             if((property != null) && (property.length() != 0)){
133                 mdbConnectionFactoryPresent = true;
134                 break;
135             }
136             
137             if(isDefaultResourcePrincipalPresent()){
138                 mdbConnectionFactoryPresent = true;
139                 break;
140             }
141             break;
142         }
143         return mdbConnectionFactoryPresent;
144     }
145
146
147     private boolean isDefaultResourcePrincipalPresent(){
148         boolean defaultResourcePrincipalPresent = false;
149         String JavaDoc property = nameTextField.getText();
150         while(true){
151             if((property != null) && (property.length() != 0)){
152                 defaultResourcePrincipalPresent = true;
153                 break;
154             }
155             
156             property = passwordTextField.getText();
157             if((property != null) && (property.length() != 0)){
158                 defaultResourcePrincipalPresent = true;
159                 break;
160             }
161             break;
162         }
163         return defaultResourcePrincipalPresent;
164     }
165
166
167     private void validateEntries(){
168         if(errorSupport != null){
169             errorSupport.showErrors();
170             ///mdEjbCutomizer.validate();
171
///this.validate();
172
}
173     }
174
175
176     private void setDefaultResourcePrincipal(
177         DefaultResourcePrincipal defaultResPrincipal){
178         if(defaultResPrincipal != null){
179             String JavaDoc name = defaultResPrincipal.getName();
180             if(name != null){
181                 nameTextField.setText(name);
182             }
183             String JavaDoc password = defaultResPrincipal.getPassword();
184             if(password != null){
185                 passwordTextField.setText(password);
186             }
187         }
188     }
189
190
191     /** This method is called from within the constructor to
192      * initialize the form.
193      * WARNING: Do NOT modify this code. The content of this method is
194      * always regenerated by the Form Editor.
195      */

196     // <editor-fold defaultstate="collapsed" desc=" Generated Code ">//GEN-BEGIN:initComponents
197
private void initComponents() {
198         java.awt.GridBagConstraints JavaDoc gridBagConstraints;
199
200         jndiNamePanel = new javax.swing.JPanel JavaDoc();
201         jndiNameLabel = new javax.swing.JLabel JavaDoc();
202         jndiNameTextField = new javax.swing.JTextField JavaDoc();
203         defaultResourcePrincipalLabel = new javax.swing.JLabel JavaDoc();
204         defaultResourcePrincipalPanel = new javax.swing.JPanel JavaDoc();
205         nameLabel = new javax.swing.JLabel JavaDoc();
206         nameTextField = new javax.swing.JTextField JavaDoc();
207         passwordLabel = new javax.swing.JLabel JavaDoc();
208         passwordTextField = new javax.swing.JTextField JavaDoc();
209         fillerPanel = new javax.swing.JPanel JavaDoc();
210
211         setLayout(new java.awt.GridBagLayout JavaDoc());
212
213         addFocusListener(new java.awt.event.FocusAdapter JavaDoc() {
214             public void focusGained(java.awt.event.FocusEvent JavaDoc evt) {
215                 formFocusGained(evt);
216             }
217         });
218
219         jndiNamePanel.setLayout(new java.awt.GridBagLayout JavaDoc());
220
221         jndiNameLabel.setDisplayedMnemonic(java.util.ResourceBundle.getBundle("org/netbeans/modules/j2ee/sun/share/configbean/customizers/ejbmodule/Bundle").getString("MNC_Mdb_Conn_Fctry_Jndi_Name").charAt(0));
222         jndiNameLabel.setLabelFor(jndiNameTextField);
223         jndiNameLabel.setText(java.util.ResourceBundle.getBundle("org/netbeans/modules/j2ee/sun/share/configbean/customizers/ejbmodule/Bundle").getString("LBL_Jndi_Name_1"));
224         gridBagConstraints = new java.awt.GridBagConstraints JavaDoc();
225         gridBagConstraints.anchor = java.awt.GridBagConstraints.EAST;
226         jndiNamePanel.add(jndiNameLabel, gridBagConstraints);
227         jndiNameLabel.getAccessibleContext().setAccessibleName(java.util.ResourceBundle.getBundle("org/netbeans/modules/j2ee/sun/share/configbean/customizers/ejbmodule/Bundle").getString("Jndi_Name_Acsbl_Name"));
228         jndiNameLabel.getAccessibleContext().setAccessibleDescription(java.util.ResourceBundle.getBundle("org/netbeans/modules/j2ee/sun/share/configbean/customizers/ejbmodule/Bundle").getString("Mdb_Conn_Fctry_Jndi_Name_Acsbl_Desc"));
229
230         jndiNameTextField.setToolTipText(java.util.ResourceBundle.getBundle("org/netbeans/modules/j2ee/sun/share/configbean/customizers/ejbmodule/Bundle").getString("Mdb_Conn_Fctry_Jndi_Name_Tool_Tip"));
231         jndiNameTextField.addActionListener(new java.awt.event.ActionListener JavaDoc() {
232             public void actionPerformed(java.awt.event.ActionEvent JavaDoc evt) {
233                 jndiNameActionPerformed(evt);
234             }
235         });
236         jndiNameTextField.addFocusListener(new java.awt.event.FocusAdapter JavaDoc() {
237             public void focusGained(java.awt.event.FocusEvent JavaDoc evt) {
238                 jndiNameFocusGained(evt);
239             }
240         });
241         jndiNameTextField.addKeyListener(new java.awt.event.KeyAdapter JavaDoc() {
242             public void keyReleased(java.awt.event.KeyEvent JavaDoc evt) {
243                 jndiNameKeyReleased(evt);
244             }
245         });
246
247         gridBagConstraints = new java.awt.GridBagConstraints JavaDoc();
248         gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL;
249         gridBagConstraints.anchor = java.awt.GridBagConstraints.WEST;
250         gridBagConstraints.weightx = 1.0;
251         gridBagConstraints.insets = new java.awt.Insets JavaDoc(0, 6, 0, 0);
252         jndiNamePanel.add(jndiNameTextField, gridBagConstraints);
253         jndiNameTextField.getAccessibleContext().setAccessibleName(java.util.ResourceBundle.getBundle("org/netbeans/modules/j2ee/sun/share/configbean/customizers/ejbmodule/Bundle").getString("Jndi_Name_Acsbl_Name"));
254         jndiNameTextField.getAccessibleContext().setAccessibleDescription(java.util.ResourceBundle.getBundle("org/netbeans/modules/j2ee/sun/share/configbean/customizers/ejbmodule/Bundle").getString("Mdb_Conn_Fctry_Jndi_Name_Acsbl_Desc"));
255
256         gridBagConstraints = new java.awt.GridBagConstraints JavaDoc();
257         gridBagConstraints.gridwidth = java.awt.GridBagConstraints.REMAINDER;
258         gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL;
259         gridBagConstraints.weightx = 1.0;
260         gridBagConstraints.insets = new java.awt.Insets JavaDoc(6, 6, 0, 5);
261         add(jndiNamePanel, gridBagConstraints);
262
263         defaultResourcePrincipalLabel.setLabelFor(defaultResourcePrincipalPanel);
264         defaultResourcePrincipalLabel.setText(java.util.ResourceBundle.getBundle("org/netbeans/modules/j2ee/sun/share/configbean/customizers/ejbmodule/Bundle").getString("LBL_Default_Resource_Principal"));
265         defaultResourcePrincipalLabel.setToolTipText("");
266         gridBagConstraints = new java.awt.GridBagConstraints JavaDoc();
267         gridBagConstraints.gridwidth = java.awt.GridBagConstraints.REMAINDER;
268         gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL;
269         gridBagConstraints.anchor = java.awt.GridBagConstraints.WEST;
270         gridBagConstraints.insets = new java.awt.Insets JavaDoc(6, 6, 0, 5);
271         add(defaultResourcePrincipalLabel, gridBagConstraints);
272
273         defaultResourcePrincipalPanel.setLayout(new java.awt.GridBagLayout JavaDoc());
274
275         defaultResourcePrincipalPanel.setBorder(javax.swing.BorderFactory.createEtchedBorder());
276         nameLabel.setDisplayedMnemonic(java.util.ResourceBundle.getBundle("org/netbeans/modules/j2ee/sun/share/configbean/customizers/ejbmodule/Bundle").getString("MNC_Mdb_Conn_Fctry_Name").charAt(0));
277         nameLabel.setLabelFor(nameTextField);
278         nameLabel.setText(java.util.ResourceBundle.getBundle("org/netbeans/modules/j2ee/sun/share/configbean/customizers/ejbmodule/Bundle").getString("LBL_Name_1"));
279         gridBagConstraints = new java.awt.GridBagConstraints JavaDoc();
280         gridBagConstraints.anchor = java.awt.GridBagConstraints.EAST;
281         gridBagConstraints.insets = new java.awt.Insets JavaDoc(6, 6, 5, 0);
282         defaultResourcePrincipalPanel.add(nameLabel, gridBagConstraints);
283         nameLabel.getAccessibleContext().setAccessibleName(java.util.ResourceBundle.getBundle("org/netbeans/modules/j2ee/sun/share/configbean/customizers/ejbmodule/Bundle").getString("Name_Acsbl_Name"));
284         nameLabel.getAccessibleContext().setAccessibleDescription(java.util.ResourceBundle.getBundle("org/netbeans/modules/j2ee/sun/share/configbean/customizers/ejbmodule/Bundle").getString("Dflt_Res_Prncpl_Name_Acsbl_Desc"));
285
286         nameTextField.setToolTipText(java.util.ResourceBundle.getBundle("org/netbeans/modules/j2ee/sun/share/configbean/customizers/ejbmodule/Bundle").getString("Dflt_Res_Prncpl_Name_Tool_Tip"));
287         nameTextField.addActionListener(new java.awt.event.ActionListener JavaDoc() {
288             public void actionPerformed(java.awt.event.ActionEvent JavaDoc evt) {
289                 nameActionPerformed(evt);
290             }
291         });
292         nameTextField.addFocusListener(new java.awt.event.FocusAdapter JavaDoc() {
293             public void focusGained(java.awt.event.FocusEvent JavaDoc evt) {
294                 nameFocusGained(evt);
295             }
296         });
297         nameTextField.addKeyListener(new java.awt.event.KeyAdapter JavaDoc() {
298             public void keyReleased(java.awt.event.KeyEvent JavaDoc evt) {
299                 nameKeyReleased(evt);
300             }
301         });
302
303         gridBagConstraints = new java.awt.GridBagConstraints JavaDoc();
304         gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL;
305         gridBagConstraints.weightx = 1.0;
306         gridBagConstraints.insets = new java.awt.Insets JavaDoc(6, 6, 5, 0);
307         defaultResourcePrincipalPanel.add(nameTextField, gridBagConstraints);
308         nameTextField.getAccessibleContext().setAccessibleName(java.util.ResourceBundle.getBundle("org/netbeans/modules/j2ee/sun/share/configbean/customizers/ejbmodule/Bundle").getString("Name_Acsbl_Name"));
309         nameTextField.getAccessibleContext().setAccessibleDescription(java.util.ResourceBundle.getBundle("org/netbeans/modules/j2ee/sun/share/configbean/customizers/ejbmodule/Bundle").getString("Dflt_Res_Prncpl_Name_Acsbl_Desc"));
310
311         passwordLabel.setDisplayedMnemonic(java.util.ResourceBundle.getBundle("org/netbeans/modules/j2ee/sun/share/configbean/customizers/ejbmodule/Bundle").getString("MNC_Mdb_Conn_Fctry_Password").charAt(0));
312         passwordLabel.setLabelFor(passwordTextField);
313         passwordLabel.setText(java.util.ResourceBundle.getBundle("org/netbeans/modules/j2ee/sun/share/configbean/customizers/ejbmodule/Bundle").getString("LBL_Password_1"));
314         gridBagConstraints = new java.awt.GridBagConstraints JavaDoc();
315         gridBagConstraints.anchor = java.awt.GridBagConstraints.EAST;
316         gridBagConstraints.insets = new java.awt.Insets JavaDoc(6, 18, 5, 0);
317         defaultResourcePrincipalPanel.add(passwordLabel, gridBagConstraints);
318         passwordLabel.getAccessibleContext().setAccessibleName(java.util.ResourceBundle.getBundle("org/netbeans/modules/j2ee/sun/share/configbean/customizers/ejbmodule/Bundle").getString("Password_Acsbl_Name"));
319         passwordLabel.getAccessibleContext().setAccessibleDescription(java.util.ResourceBundle.getBundle("org/netbeans/modules/j2ee/sun/share/configbean/customizers/ejbmodule/Bundle").getString("Dflt_Res_Prncpl_Password_Acsbl_Desc"));
320
321         passwordTextField.setToolTipText(java.util.ResourceBundle.getBundle("org/netbeans/modules/j2ee/sun/share/configbean/customizers/ejbmodule/Bundle").getString("Dflt_Res_Prncpl_Password_Tool_Tip"));
322         passwordTextField.addActionListener(new java.awt.event.ActionListener JavaDoc() {
323             public void actionPerformed(java.awt.event.ActionEvent JavaDoc evt) {
324                 passwordActionPerformed(evt);
325             }
326         });
327         passwordTextField.addFocusListener(new java.awt.event.FocusAdapter JavaDoc() {
328             public void focusGained(java.awt.event.FocusEvent JavaDoc evt) {
329                 passwordFocusGained(evt);
330             }
331         });
332         passwordTextField.addKeyListener(new java.awt.event.KeyAdapter JavaDoc() {
333             public void keyReleased(java.awt.event.KeyEvent JavaDoc evt) {
334                 passwordKeyReleased(evt);
335             }
336         });
337
338         gridBagConstraints = new java.awt.GridBagConstraints JavaDoc();
339         gridBagConstraints.gridwidth = java.awt.GridBagConstraints.REMAINDER;
340         gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL;
341         gridBagConstraints.weightx = 1.0;
342         gridBagConstraints.insets = new java.awt.Insets JavaDoc(6, 6, 5, 5);
343         defaultResourcePrincipalPanel.add(passwordTextField, gridBagConstraints);
344         passwordTextField.getAccessibleContext().setAccessibleName(java.util.ResourceBundle.getBundle("org/netbeans/modules/j2ee/sun/share/configbean/customizers/ejbmodule/Bundle").getString("Password_Acsbl_Name"));
345         passwordTextField.getAccessibleContext().setAccessibleDescription(java.util.ResourceBundle.getBundle("org/netbeans/modules/j2ee/sun/share/configbean/customizers/ejbmodule/Bundle").getString("Dflt_Res_Prncpl_Password_Acsbl_Desc"));
346
347         gridBagConstraints = new java.awt.GridBagConstraints JavaDoc();
348         gridBagConstraints.gridwidth = java.awt.GridBagConstraints.REMAINDER;
349         gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL;
350         gridBagConstraints.weightx = 1.0;
351         gridBagConstraints.insets = new java.awt.Insets JavaDoc(0, 6, 5, 5);
352         add(defaultResourcePrincipalPanel, gridBagConstraints);
353
354         gridBagConstraints = new java.awt.GridBagConstraints JavaDoc();
355         gridBagConstraints.gridwidth = java.awt.GridBagConstraints.REMAINDER;
356         gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH;
357         gridBagConstraints.weighty = 1.0;
358         add(fillerPanel, gridBagConstraints);
359
360     }// </editor-fold>//GEN-END:initComponents
361

362     private void formFocusGained(java.awt.event.FocusEvent JavaDoc evt) {//GEN-FIRST:event_formFocusGained
363
validateEntries();
364     }//GEN-LAST:event_formFocusGained
365

366     private void passwordFocusGained(java.awt.event.FocusEvent JavaDoc evt) {//GEN-FIRST:event_passwordFocusGained
367
// Add your handling code here:
368
validateEntries();
369     }//GEN-LAST:event_passwordFocusGained
370

371     private void passwordActionPerformed(java.awt.event.ActionEvent JavaDoc evt) {//GEN-FIRST:event_passwordActionPerformed
372
// Add your handling code here:
373
validateEntries();
374     }//GEN-LAST:event_passwordActionPerformed
375

376     private void nameFocusGained(java.awt.event.FocusEvent JavaDoc evt) {//GEN-FIRST:event_nameFocusGained
377
// Add your handling code here:
378
validateEntries();
379     }//GEN-LAST:event_nameFocusGained
380

381     private void nameActionPerformed(java.awt.event.ActionEvent JavaDoc evt) {//GEN-FIRST:event_nameActionPerformed
382
// Add your handling code here:
383
validateEntries();
384     }//GEN-LAST:event_nameActionPerformed
385

386     private void jndiNameFocusGained(java.awt.event.FocusEvent JavaDoc evt) {//GEN-FIRST:event_jndiNameFocusGained
387
// Add your handling code here:
388
validateEntries();
389     }//GEN-LAST:event_jndiNameFocusGained
390

391     private void jndiNameActionPerformed(java.awt.event.ActionEvent JavaDoc evt) {//GEN-FIRST:event_jndiNameActionPerformed
392
// Add your handling code here:
393
validateEntries();
394     }//GEN-LAST:event_jndiNameActionPerformed
395

396     private void passwordKeyReleased(java.awt.event.KeyEvent JavaDoc evt) {//GEN-FIRST:event_passwordKeyReleased
397
// Add your handling code here:
398
String JavaDoc item = passwordTextField.getText();
399         mdEjbCutomizer.updateDefaultResourcePrincipalPassword(item);
400         validateEntries();
401     }//GEN-LAST:event_passwordKeyReleased
402

403     private void nameKeyReleased(java.awt.event.KeyEvent JavaDoc evt) {//GEN-FIRST:event_nameKeyReleased
404
// Add your handling code here:
405
String JavaDoc item = nameTextField.getText();
406         mdEjbCutomizer.updateDefaultResourcePrincipalName(item);
407         validateEntries();
408     }//GEN-LAST:event_nameKeyReleased
409

410     private void jndiNameKeyReleased(java.awt.event.KeyEvent JavaDoc evt) {//GEN-FIRST:event_jndiNameKeyReleased
411
// Add your handling code here:
412
String JavaDoc item = jndiNameTextField.getText();
413         mdEjbCutomizer.updateMdbConnectionFactoryJndiName(item);
414         validateEntries();
415     }//GEN-LAST:event_jndiNameKeyReleased
416

417
418     // Variables declaration - do not modify//GEN-BEGIN:variables
419
private javax.swing.JLabel JavaDoc defaultResourcePrincipalLabel;
420     private javax.swing.JPanel JavaDoc defaultResourcePrincipalPanel;
421     private javax.swing.JPanel JavaDoc fillerPanel;
422     private javax.swing.JLabel JavaDoc jndiNameLabel;
423     private javax.swing.JPanel JavaDoc jndiNamePanel;
424     private javax.swing.JTextField JavaDoc jndiNameTextField;
425     private javax.swing.JLabel JavaDoc nameLabel;
426     private javax.swing.JTextField JavaDoc nameTextField;
427     private javax.swing.JLabel JavaDoc passwordLabel;
428     private javax.swing.JTextField JavaDoc passwordTextField;
429     // End of variables declaration//GEN-END:variables
430

431 }
432
Popular Tags