You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by la...@apache.org on 2011/09/27 23:19:25 UTC

svn commit: r1176627 - /incubator/airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/component/gui/JCRRegistryWindow.java

Author: lahiru
Date: Tue Sep 27 21:19:25 2011
New Revision: 1176627

URL: http://svn.apache.org/viewvc?rev=1176627&view=rev
Log:
fixing https://issues.apache.org/jira/browse/AIRAVATA-121.

Modified:
    incubator/airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/component/gui/JCRRegistryWindow.java

Modified: incubator/airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/component/gui/JCRRegistryWindow.java
URL: http://svn.apache.org/viewvc/incubator/airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/component/gui/JCRRegistryWindow.java?rev=1176627&r1=1176626&r2=1176627&view=diff
==============================================================================
--- incubator/airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/component/gui/JCRRegistryWindow.java (original)
+++ incubator/airavata/trunk/modules/xbaya-gui/src/main/java/org/apache/airavata/xbaya/component/gui/JCRRegistryWindow.java Tue Sep 27 21:19:25 2011
@@ -139,12 +139,12 @@ public class JCRRegistryWindow {
         this.urlTextField = new XBayaTextField();
         this.usernameTextField = new XBayaTextField();
         this.passwordTextField = new JPasswordField();
+        this.urlTextField.setText(XBayaConstants.REGISTRY_URL.toASCIIString());
+        this.usernameTextField.setText(XBayaConstants.REGISTRY_USERNAME);
+        this.passwordTextField.setText(XBayaConstants.REGISTRY_PASSPHRASE);
         XBayaLabel urlLabel = new XBayaLabel("URL", this.urlTextField);
         XBayaLabel nameLabel = new XBayaLabel("Username", this.usernameTextField);
         XBayaLabel passLabel = new XBayaLabel("Password", this.usernameTextField);
-        urlLabel.setText(XBayaConstants.REGISTRY_URL.toASCIIString());
-        nameLabel.setText(XBayaConstants.REGISTRY_USERNAME);
-        passLabel.setText(XBayaConstants.REGISTRY_PASSPHRASE);
         this.newUserButton = new XBayaLinkButton("Create new user...");
         newUserButton.setHorizontalAlignment(XBayaLinkButton.RIGHT);
         JLabel emptyLabel = new JLabel("");