Example #1
0
 @Override
 public Result onUnauthorized(Context context) {
   AppLogUtil.debug("@@@@@StudentSecured#getUsername");
   // FIXME 適切なリダイレクト先へ
   return redirect(controllers.student.routes.Application.index());
 }
Example #2
0
 @Override
 public String getUsername(Context context) {
   AppLogUtil.debug("@@@@@StudentSecured#getUsername");
   return context.session().get("entry_user_id");
 }