01: /*
02: * $Id:LocalJbpmConfigurationFactoryBeanWorkaround.java 5924 2007-04-07 21:12:55 +0000 (Sat, 07 Apr 2007) tcarlson $
03: * --------------------------------------------------------------------------------------
04: * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com
05: *
06: * The software in this package is published under the terms of the CPAL v1.0
07: * license, a copy of which has been included with this distribution in the
08: * LICENSE.txt file.
09: */
10:
11: package org.springmodules.workflow.jbpm31;
12:
13: import org.springframework.beans.BeansException;
14: import org.springframework.beans.factory.BeanFactory;
15:
16: /**
17: * This class is an ugly workaround for the issue described in http://forum.springframework.org/showthread.php?p=87189
18: * http://opensource.atlassian.com/projects/spring/browse/MOD-266
19: * <p/>
20: * This was supposedly fixed in springmodules 0.7 but the problem still remains in 0.8!
21: */
22: public class LocalJbpmConfigurationFactoryBeanWorkaround extends
23: LocalJbpmConfigurationFactoryBean {
24:
25: public void setBeanFactory(BeanFactory arg0) throws BeansException {
26: // Disable parent method
27: }
28:
29: public void setBeanName(String arg0) {
30: // Disable parent method
31: }
32: }
|