import com.cc.myaop.learning.logging.MySubject;
public class TestAuth {
public static void main(String[] args) {
AuthService service = new AopAuthServiceImpl();
service.login(new MySubject("cclaudiu", new char[]{'1'}));
service.logout(new MySubject("cclaudiu", new char[]{'1'}));
}