Skip to content

Instantly share code, notes, and snippets.

@sandsfish
Created June 4, 2012 21:35
Show Gist options
  • Select an option

  • Save sandsfish/2870969 to your computer and use it in GitHub Desktop.

Select an option

Save sandsfish/2870969 to your computer and use it in GitHub Desktop.

Revisions

  1. Sands Fish created this gist Jun 4, 2012.
    19 changes: 19 additions & 0 deletions Submit.java
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,19 @@
    package controllers;

    import play.*;
    import play.mvc.*;
    import play.mvc.Http.Header;

    import java.util.*;
    import java.util.Map.Entry;

    import org.tdl.vireo.model.RoleType;

    @With(Authentication.class)
    public class Submit extends Controller {

    @Security(RoleType.STUDENT)
    public static void VerifyPersonalInformation() {
    render("Submit/VerifyPersonalInformation.html");
    }
    }