package name refactoring

This commit is contained in:
chernykhalexander 2016-07-24 00:59:23 +03:00
parent 644a7d23a4
commit 6db9efda21
5 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
package com.baeldung.interceptor;
package com.baeldung.cdi.interceptor;
import javax.interceptor.InterceptorBinding;
import java.lang.annotation.ElementType;

View File

@ -1,4 +1,4 @@
package com.baeldung.interceptor;
package com.baeldung.cdi.interceptor;
import javax.interceptor.AroundInvoke;
import javax.interceptor.Interceptor;

View File

@ -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

View File

@ -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>

View File

@ -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;