Re: Expired sign in link after signing out

2009-05-28 Thread Tim Moose
meters)null)); >>        } >>    } >> >> I did verify that getHomePage() is correctly returning my home page class >> and my home page constructors look like this: >> >>    public Index() { >>        this(null); >>    } >> >>    

Re: Expired sign in link after signing out

2009-05-27 Thread Jeremy Thomerson
   } >    } > > I did verify that getHomePage() is correctly returning my home page class > and my home page constructors look like this: > >    public Index() { >        this(null); >    } > >    public Index(final PageParameters parameters) { >        super(parame

Re: Expired sign in link after signing out

2009-05-27 Thread Tim Moose
class and my home page constructors look like this: public Index() { this(null); } public Index(final PageParameters parameters) { super(parameters); } Any idea what I'm doing wrong? Thanks, Tim -- View this message in context: http://www.nabble.com/Expired-si

Re: Expired sign in link after signing out

2009-05-26 Thread Ryan Gravener
add(new BookmarkablePageLink("signin", SigninPage.class)); Ryan Gravener http://isithotinhereorisitjust.me | http://twitter.com/ryangravener On Tue, May 26, 2009 at 6:32 PM, Tim Moose wrote: > Hi, > > This seems like a FAQ but I couldn't find it. All of my pages have a > common header with sig

Expired sign in link after signing out

2009-05-26 Thread Tim Moose
Hi, This seems like a FAQ but I couldn't find it. All of my pages have a common header with sign in / sign out links. When the user clicks the sign in link, I want to display the sign in page and then return to the previous page after the user signs in. My sign in link looks like this: add(ne