package name refactoring
This commit is contained in:
parent
644a7d23a4
commit
6db9efda21
|
@ -1,4 +1,4 @@
|
|||
package com.baeldung.interceptor;
|
||||
package com.baeldung.cdi.interceptor;
|
||||
|
||||
import javax.interceptor.InterceptorBinding;
|
||||
import java.lang.annotation.ElementType;
|
|
@ -1,4 +1,4 @@
|
|||
package com.baeldung.interceptor;
|
||||
package com.baeldung.cdi.interceptor;
|
||||
|
||||
import javax.interceptor.AroundInvoke;
|
||||
import javax.interceptor.Interceptor;
|
|
@ -1,6 +1,6 @@
|
|||
package com.baeldung.service;
|
||||
package com.baeldung.cdi.service;
|
||||
|
||||
import com.baeldung.interceptor.Audited;
|
||||
import com.baeldung.cdi.interceptor.Audited;
|
||||
|
||||
public class SuperService {
|
||||
@Audited
|
|
@ -3,6 +3,6 @@
|
|||
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
|
||||
http://java.sun.com/xml/ns/javaee/beans_1_2.xsd">
|
||||
<interceptors>
|
||||
<class>com.baeldung.interceptor.AuditedInterceptor</class>
|
||||
<class>com.baeldung.cdi.interceptor.AuditedInterceptor</class>
|
||||
</interceptors>
|
||||
</beans>
|
|
@ -1,6 +1,6 @@
|
|||
package com.baeldung.test;
|
||||
|
||||
import com.baeldung.service.SuperService;
|
||||
import com.baeldung.cdi.service.SuperService;
|
||||
import org.jboss.weld.environment.se.Weld;
|
||||
import org.jboss.weld.environment.se.WeldContainer;
|
||||
import org.junit.Assert;
|
||||
|
|
Loading…
Reference in New Issue