blob: b1cb4a97a32a301aa0cffb55d4ce009a202fb638 [file] [log] [blame]
// Copyright 2007, 2008 The Apache Software Foundation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package org.apache.tapestry5.integration.app3.pages;
import org.apache.tapestry5.annotations.InjectPage;
import org.apache.tapestry5.annotations.Persist;
import org.apache.tapestry5.annotations.Property;
public class Index
{
@InjectPage
private Login login;
@Persist
@Property
private String message;
boolean onActivate(String message)
{
this.message = message;
// Terminate the event before it gets to the no-args onActivate().
return true;
}
Object onActivate()
{
// Perform a redirect to the login page.
return login;
}
}