Changeset 3787


Ignore:
Timestamp:
Aug 23, 2010, 1:59:46 PM (13 years ago)
Author:
Gregory Vincic
Message:

Refs #689. Fixing ViewHit? compile errors.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/client/servlet/src/org/proteios/action/hit/ViewHit.java

    r3786 r3787  
    3333import se.lu.thep.waf.ActionException;
    3434import se.lu.thep.waf.constraints.InvalidParameterValue;
     35import se.lu.thep.waf.constraints.VInteger;
    3536
    3637/**
     
    4243{
    4344 private static final VInteger vid = new DBID();
    44  private static final VInteger vhitid = new ActiveHitId();
     45 private static final VInteger vhitid = new ActiveHitID();
    4546
    4647  @Override
     
    5051    Integer hitId;
    5152
    52   verifyParameters(id);
    53     hitId = getValidInteger(id);
     53  verifyParameters(vid);
     54    hitId = getValidInteger(vid);
    5455    setSessionAttribute(vhitid.getName(), hitId);
    5556    setForwardTo(ViewActiveHit.class);
Note: See TracChangeset for help on using the changeset viewer.