Changeset 3830


Ignore:
Timestamp:
Sep 8, 2010, 10:45:29 AM (13 years ago)
Author:
Gregory Vincic
Message:

Refs #698. Replaced references to FormFactory.VUSERNAME with UsernameField.VPARAM

Location:
trunk/client/servlet/src/org/proteios
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/client/servlet/src/org/proteios/action/execute/Login.java

    r3825 r3830  
    118118    catch (ItemNotFoundException e)
    119119    {
    120       setErrorAttribute(FormFactory.VUSERNAME, "invalid");
     120      setErrorAttribute(UsernameField.VPARAM, "invalid");
    121121      setError("No such user '" + username + "'");
    122122      throw e;
  • trunk/client/servlet/src/org/proteios/gui/form/FormFactory.java

    r3829 r3830  
    207207  public static final VInteger VANNOTYPEID = new VInteger("annotationTypeId",0, true);
    208208  public static final VInteger VGROUPID = new VInteger("groupId", 1, false);
    209   public static final VString VUSERNAME = new VString("username", 1, 32, true);
    210209  public static final VString VANNONAME = new VString("annotationName", 1,64, false);
    211210  public static final VString VEMAIL = new VString("email", 1, 255, true);
Note: See TracChangeset for help on using the changeset viewer.