org.acegisecurity.domain.validation.ValidationInterceptor 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.acegisecurity.domain.PersistableEntity;
import org.acegisecurity.domain.impl.BusinessObject;
import org.aopalliance.intercept.MethodInterceptor;
import org.aopalliance.intercept.MethodInvocation;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.util.Assert;
/**
* Calls {@link ValidationManager} for method invocations.For each method invocation, any argument that is
* assignable from {@link #argumentClasses}and is non-null
will be passed to the {@link
* org.acegisecurity.domain.validation.ValidationManager} for processing.
*
* @author Ben Alex
* @version $Id: ValidationInterceptor.java 1496 2006-05-23 13:38:33Z benalex $
*/
public class ValidationInterceptor implements MethodInterceptor, InitializingBean {
//~ Instance fields ================================================================================================
protected final Log logger = LogFactory.getLog(getClass());
private ValidationManager validationManager;
private Class>[] argumentClasses = {BusinessObject.class, PersistableEntity.class};
//~ Methods ========================================================================================================
public void afterPropertiesSet() throws Exception {
Assert.notNull(validationManager, "A ValidationManager is required");
Assert.notEmpty(argumentClasses, "A list of business object classes to validate is required");
}
public Class[] getArgumentClasses() {
return argumentClasses;
}
public ValidationManager getValidationManager() {
return validationManager;
}
public Object invoke(MethodInvocation mi) throws Throwable {
Object[] args = mi.getArguments();
for (int i = 0; i < args.length; i++) {
if (shouldValidate(args[i])) {
if (logger.isDebugEnabled()) {
logger.debug("ValidationInterceptor calling for: '" + args[i] + "'");
}
validationManager.validate(args[i]);
}
}
return mi.proceed();
}
public void setArgumentClasses(Class[] argumentClasses) {
this.argumentClasses = argumentClasses;
}
public void setValidationManager(ValidationManager validationManager) {
this.validationManager = validationManager;
}
private boolean shouldValidate(Object argument) {
if (argument == null) {
return false;
}
for (int i = 0; i < argumentClasses.length; i++) {
if (argumentClasses[i].isAssignableFrom(argument.getClass())) {
return true;
}
}
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy