Simplifying packaging
This commit is contained in:
parent
dfab514568
commit
00ecbde244
|
|
@ -13,7 +13,7 @@
|
||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
package org.springframework.config.java.ext;
|
package org.springframework.config.java.internal.enhancement;
|
||||||
|
|
||||||
import java.lang.reflect.Method;
|
import java.lang.reflect.Method;
|
||||||
|
|
||||||
|
|
@ -33,7 +33,7 @@ import org.springframework.util.Assert;
|
||||||
*
|
*
|
||||||
* @author Chris Beams
|
* @author Chris Beams
|
||||||
*/
|
*/
|
||||||
public abstract class AbstractMethodInterceptor implements BeanFactoryAware, MethodInterceptor {
|
abstract class AbstractMethodInterceptor implements BeanFactoryAware, MethodInterceptor {
|
||||||
protected final Log log = LogFactory.getLog(this.getClass());
|
protected final Log log = LogFactory.getLog(this.getClass());
|
||||||
protected DefaultListableBeanFactory beanFactory;
|
protected DefaultListableBeanFactory beanFactory;
|
||||||
|
|
||||||
|
|
@ -13,7 +13,7 @@
|
||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
package org.springframework.config.java.ext;
|
package org.springframework.config.java.internal.enhancement;
|
||||||
|
|
||||||
import static java.lang.String.*;
|
import static java.lang.String.*;
|
||||||
|
|
||||||
|
|
@ -22,6 +22,8 @@ import java.lang.reflect.Method;
|
||||||
import net.sf.cglib.proxy.MethodProxy;
|
import net.sf.cglib.proxy.MethodProxy;
|
||||||
|
|
||||||
import org.springframework.beans.factory.config.ConfigurableBeanFactory;
|
import org.springframework.beans.factory.config.ConfigurableBeanFactory;
|
||||||
|
import org.springframework.config.java.ext.Bean;
|
||||||
|
import org.springframework.config.java.ext.BeanRegistrar;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -42,7 +42,6 @@ import org.springframework.beans.factory.support.DefaultListableBeanFactory;
|
||||||
import org.springframework.config.java.BeanDefinitionRegistrar;
|
import org.springframework.config.java.BeanDefinitionRegistrar;
|
||||||
import org.springframework.config.java.BeanMethod;
|
import org.springframework.config.java.BeanMethod;
|
||||||
import org.springframework.config.java.Configuration;
|
import org.springframework.config.java.Configuration;
|
||||||
import org.springframework.config.java.ext.BeanMethodInterceptor;
|
|
||||||
import org.springframework.config.java.ext.BeanRegistrar;
|
import org.springframework.config.java.ext.BeanRegistrar;
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue