I have a Guard whose findSecret(String) method needs the Request from the authenticate(Request) method. Right now I am overriding authenticate to call my own checkSecret method (which calls my own findSecret method, passing down the Request from authenticate). Does it make sense for the framework pass down the Request, or is my case so much on the fringe that I should just stick to what I'm doing?
Best, Jeff

