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 javax.interceptor.InterceptorBinding;
import java.lang.annotation.ElementType; 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.AroundInvoke;
import javax.interceptor.Interceptor; 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 { public class SuperService {
@Audited @Audited

View File

@ -3,6 +3,6 @@
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/beans_1_2.xsd"> http://java.sun.com/xml/ns/javaee/beans_1_2.xsd">
<interceptors> <interceptors>
<class>com.baeldung.interceptor.AuditedInterceptor</class> <class>com.baeldung.cdi.interceptor.AuditedInterceptor</class>
</interceptors> </interceptors>
</beans> </beans>

View File

@ -1,6 +1,6 @@
package com.baeldung.test; 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.Weld;
import org.jboss.weld.environment.se.WeldContainer; import org.jboss.weld.environment.se.WeldContainer;
import org.junit.Assert; import org.junit.Assert;