Skip to content

Instantly share code, notes, and snippets.

@willianantunes
Created October 10, 2018 21:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save willianantunes/23303edc4f7f791bfc3b76cd6929aab1 to your computer and use it in GitHub Desktop.
Save willianantunes/23303edc4f7f791bfc3b76cd6929aab1 to your computer and use it in GitHub Desktop.
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