Simplifying packaging

This commit is contained in:
Chris Beams 2009-03-06 07:11:01 +00:00
parent dfab514568
commit 00ecbde244
3 changed files with 5 additions and 4 deletions

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.config.java.ext;
package org.springframework.config.java.internal.enhancement;
import java.lang.reflect.Method;
@ -33,7 +33,7 @@ import org.springframework.util.Assert;
*
* @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 DefaultListableBeanFactory beanFactory;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.config.java.ext;
package org.springframework.config.java.internal.enhancement;
import static java.lang.String.*;
@ -22,6 +22,8 @@ import java.lang.reflect.Method;
import net.sf.cglib.proxy.MethodProxy;
import org.springframework.beans.factory.config.ConfigurableBeanFactory;
import org.springframework.config.java.ext.Bean;
import org.springframework.config.java.ext.BeanRegistrar;
/**

View File

@ -42,7 +42,6 @@ import org.springframework.beans.factory.support.DefaultListableBeanFactory;
import org.springframework.config.java.BeanDefinitionRegistrar;
import org.springframework.config.java.BeanMethod;
import org.springframework.config.java.Configuration;
import org.springframework.config.java.ext.BeanMethodInterceptor;
import org.springframework.config.java.ext.BeanRegistrar;