org.sakaiproject.genericdao.springutil.SetOnceClassLoaderBeanNameAutoProxyCreator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of generic-dao Show documentation
Show all versions of generic-dao Show documentation
Generic Dao is a Java package which allows a developer to skip writing
DAOs for their persistence objects when they are using Spring and/or Hibernate.
The package was originally created by Aaron Zeckoski for the Evaluation System
project but was repackaged to make it distributable by request. It is used in the
RSF framework (http://www2.caret.cam.ac.uk/rsfwiki/). Note about the BeanUtils
provided dependency: BeanUtils is not required if you are not using it in your
project. Note about the Hibernate provided dependency: Hibernate is not required
if you are not using it in your project.
The newest version!
/**
* $Id$
* $URL$
* SetOnceClassLoaderBeanNameAutoProxyCreator.java - genericdao - May 7, 2008 10:31:14 AM - azeckoski
**************************************************************************
* Copyright (c) 2008 Aaron Zeckoski
* Licensed under the Apache License, Version 2.0
*
* A copy of the Apache License has been included in this
* distribution and is available at: http://www.apache.org/licenses/LICENSE-2.0.txt
*
* Aaron Zeckoski ([email protected]) ([email protected]) ([email protected])
*/
package org.sakaiproject.genericdao.springutil;
/**
* This is needed to keep the {@link ClassLoader} from getting overwritten after we set it,
* the {@link ClassLoader} can be set using the setter but can only be set one time
*
* @author Aaron Zeckoski ([email protected])
*/
public class SetOnceClassLoaderBeanNameAutoProxyCreator extends CurrentClassLoaderBeanNameAutoProxyCreator {
private static final long serialVersionUID = 1L;
boolean alreadySet = false;
public void setProxyClassLoader(ClassLoader classLoader) {
if (classLoader != null) {
if (! alreadySet) {
this.myClassLoader = classLoader;
alreadySet = true;
}
}
}
}