Ignore:
Timestamp:
03/15/19 16:51:32 (5 years ago)
Author:
bln4
Message:

Alterations to how mail works to work better in a cloud environment.
General code tidying and updating to work with larger changes happening to Expeditee.

Location:
trunk/src/org/expeditee/auth/tags
Files:
1 added
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/auth/tags/AuthenticationTag.java

    r1242 r1243  
    1 package org.expeditee.auth;
     1package org.expeditee.auth.tags;
    22
    33import java.util.Collection;
     
    1515        NewPasswordAgain ("txtNewPasswordAgain", System.getProperty("user.new.password.again")),
    1616        Email ("txtEmail", System.getProperty("user.email")),
     17        EmailAgain ("txtEmailAgain", System.getProperty("user.email.again")),
    1718        ColleagueOne ("txtColleagueOne", System.getProperty("user.colleague.one")),
    18         ColleagueTwo ("txtColleagueTwo", System.getProperty("user.colleague.two"));
     19        ColleagueTwo ("txtColleagueTwo", System.getProperty("user.colleague.two")),
     20        Frameset ("txtFrameset", System.getProperty("user.toshare.frameset"));
    1921       
    2022        public String val;
    2123        public String def;
    2224
    23         private AuthenticationTag(final String tag, final String def) {
     25        private AuthenticationTag(String tag, String def) {
    2426                this.val = tag;
    2527                this.def = def;         
     
    3335                                // use the canditate if it exists
    3436                                if (canditate.hasData(tag.val)) {
    35                                         fetchedData.put(tag, canditate.getText());
     37                                        if (tag.val.equals("txtUsername")) {
     38                                                fetchedData.put(tag, canditate.getText().toLowerCase());
     39                                        } else {
     40                                                fetchedData.put(tag, canditate.getText());
     41                                        }
    3642                                        break;
    3743                                }
Note: See TracChangeset for help on using the changeset viewer.