org.acegisecurity.domain.validation.ValidationManager Maven / Gradle / Ivy
/* Copyright 2004, 2005, 2006 Acegi Technology Pty Limited
*
* 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.acegisecurity.domain.validation;
import org.springframework.validation.BindException;
/**
* Able to validate any passed domain object instance, including its children.
*
* @author Ben Alex
* @version $Id: ValidationManager.java 1496 2006-05-23 13:38:33Z benalex $
*/
public interface ValidationManager {
//~ Methods ========================================================================================================
/**
* Validates the passed domain object, along with any children, grandchildren, great-grandchildren etc.Before
* performing validation, implementations must execute {@link BindBeforeValidation} for any domain objects
* requesting it.
*
* @param domainObject to validate (cannot be null
)
*
* @throws BindException if a validation problem occurs
* @throws ValidatorNotFoundException if no matching Validator
could be found (and the implementation
* wishes to treat this as an exception condition as opposed to logging it and continuing).
*/
public void validate(Object domainObject) throws BindException, ValidatorNotFoundException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy