bind and validate lifecycle rename

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@1437 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Keith Donald
2009-06-26 05:02:00 +00:00
parent 0aafa46932
commit 01fdaa1693
2 changed files with 7 additions and 5 deletions
@@ -28,7 +28,7 @@ import org.springframework.ui.validation.Validator;
* @author Keith Donald
* @since 3.0
*/
public class WebBindAndValidateLifecycle {
public class BindAndValidateLifecycle {
private final Binder binder;
@@ -38,7 +38,7 @@ public class WebBindAndValidateLifecycle {
private Validator validator;
public WebBindAndValidateLifecycle(Binder binder, AlertContext alertContext) {
public BindAndValidateLifecycle(Binder binder, AlertContext alertContext) {
this.binder = binder;
this.alertContext = alertContext;
}