blob: 6c30d32bef439c2af299334c640652c79ddee182 [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.tapestry.integration.app3.pages;
import org.apache.tapestry.annotation.InjectPage;
import org.apache.tapestry.annotation.Persist;
import org.apache.tapestry.annotation.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;
}
}