Created
October 10, 2018 21:13
-
-
Save willianantunes/23303edc4f7f791bfc3b76cd6929aab1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package br.com.globo.aop; | |
import org.aspectj.lang.annotation.Aspect; | |
import org.aspectj.lang.annotation.Pointcut; | |
import org.springframework.stereotype.Component; | |
@Aspect | |
@Component | |
public class PointCuts { | |
/** | |
* Method is empty as this is just a Pointcut, the implementations are in the advices. | |
*/ | |
@Pointcut("within(br.com.globo.steps..*)") | |
public void stepDefinitionsPointcut() { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment