Move AdviceMode from .config to .annotation package

This commit is contained in:
Chris Beams
2011-10-09 07:55:08 +00:00
parent 1819bee35f
commit d122ecb42e
8 changed files with 10 additions and 10 deletions

View File

@@ -14,11 +14,11 @@
* limitations under the License.
*/
package org.springframework.context.config;
package org.springframework.context.annotation;
/**
* Enumeration used to determine whether proxy-based or AspectJ-based advice should be
* applied.
* Enumeration used to determine whether JDK proxy-based or AspectJ weaving-based advice
* should be applied.
*
* @author Chris Beams
* @since 3.1

View File

@@ -18,10 +18,10 @@ package org.springframework.scheduling.annotation;
import java.util.Map;
import org.springframework.context.annotation.AdviceMode;
import org.springframework.context.annotation.AnnotationConfigUtils;
import org.springframework.context.annotation.ImportSelectorContext;
import org.springframework.context.annotation.ImportSelector;
import org.springframework.context.config.AdviceMode;
import org.springframework.core.type.AnnotationMetadata;
import org.springframework.util.Assert;

View File

@@ -23,9 +23,9 @@ import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import org.springframework.context.annotation.AdviceMode;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;
import org.springframework.context.config.AdviceMode;
import org.springframework.core.Ordered;
/**