To specify which the core logic method/s , need to be advised.
Represents WHERE to apply advice
PointCut - collection of join points.
Example in Aspect Class:
@Before ("execution (* com.sunbeam.service.UserService.*(String,String))")
public void logIt()
{
log.info(.....);
}