X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=security%2Fruntime%2Forg.argeo.security.core%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fsecurity%2Fcore%2FAuthenticatedApplicationContextInitialization.java;h=97dd6cae037f9798602a64a12844bf5bb924fd3a;hb=8d632c0f62ac4d0acbb837c580234bcecb43016e;hp=59f6a517921e79c448e08ad342889e6c2fb5497e;hpb=6923ae4b420d1b2eccbccae00f04ae46ab59f72c;p=lgpl%2Fargeo-commons.git diff --git a/security/runtime/org.argeo.security.core/src/main/java/org/argeo/security/core/AuthenticatedApplicationContextInitialization.java b/security/runtime/org.argeo.security.core/src/main/java/org/argeo/security/core/AuthenticatedApplicationContextInitialization.java index 59f6a5179..97dd6cae0 100644 --- a/security/runtime/org.argeo.security.core/src/main/java/org/argeo/security/core/AuthenticatedApplicationContextInitialization.java +++ b/security/runtime/org.argeo.security.core/src/main/java/org/argeo/security/core/AuthenticatedApplicationContextInitialization.java @@ -1,9 +1,24 @@ +/* + * Copyright (C) 2007-2012 Argeo GmbH + * + * 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.argeo.security.core; import java.beans.PropertyDescriptor; +import java.util.ArrayList; +import java.util.List; -import org.apache.commons.logging.Log; -import org.apache.commons.logging.LogFactory; import org.springframework.beans.BeansException; import org.springframework.beans.PropertyValues; import org.springframework.beans.factory.config.InstantiationAwareBeanPostProcessor; @@ -18,20 +33,22 @@ import org.springframework.context.event.ContextRefreshedEvent; public class AuthenticatedApplicationContextInitialization extends AbstractSystemExecution implements InstantiationAwareBeanPostProcessor, ApplicationListener { - private Log log = LogFactory - .getLog(AuthenticatedApplicationContextInitialization.class); + // private Log log = LogFactory + // .getLog(AuthenticatedApplicationContextInitialization.class); + /** If non empty, restricts to these beans */ + private List beanNames = new ArrayList(); @SuppressWarnings("rawtypes") public Object postProcessBeforeInstantiation(Class beanClass, String beanName) throws BeansException { - // we authenticate when any beans is instantiated + // we authenticate when any bean is instantiated // we will deauthenticate only when the application context has been // refreshed in order to be able to deal with factory beans has well if (!isAuthenticatedBySelf()) { - authenticateAsSystem(); - if (log.isTraceEnabled()) - log.trace("Application context initialization authenticated for thread " - + Thread.currentThread().getName()); + if (beanNames.size() == 0) + authenticateAsSystem(); + else if (beanNames.contains(beanName)) + authenticateAsSystem(); } return null; } @@ -67,11 +84,12 @@ public class AuthenticatedApplicationContextInitialization extends if (event instanceof ContextRefreshedEvent) { // make sure that we have deauthenticated after the application // context was initialized/refreshed - deauthenticateAsSystem(); - if (log.isTraceEnabled()) - log.trace("Application context initialization deauthenticated for thread " - + Thread.currentThread().getName()); + // deauthenticateAsSystem(); } } + public void setBeanNames(List beanNames) { + this.beanNames = beanNames; + } + }