[유치수] [NOBTS] modify class associated with Tagging.

git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-tomcat-profiler/trunk@535 84d0f5b1-2673-498c-a247-62c4ff18d310
This commit is contained in:
Chisu Yu
2012-08-27 03:07:14 +00:00
parent 0691d11e6d
commit 147bfed2fc
7 changed files with 99 additions and 27 deletions
@@ -2,31 +2,36 @@ package com.profiler.context;
public interface Annotation {
public static final String CLIENT_SEND = "@CLIENT_SEND";
public static final String CLIENT_RECV = "@CLIENT_RECV";
public static final String SERVER_SEND = "@SERVER_SEND";
public static final String SERVER_RECV = "@SERVER_RECV";
public static class ClientSend implements Annotation {
@Override
public String toString() {
return "@CLIENT_SEND";
return CLIENT_SEND;
}
}
public static class ClientRecv implements Annotation {
@Override
public String toString() {
return "@CLIENT_RECV";
return CLIENT_RECV;
}
}
public static class ServerSend implements Annotation {
@Override
public String toString() {
return "@SERVER_SEND";
return SERVER_SEND;
}
}
public static class ServerRecv implements Annotation {
@Override
public String toString() {
return "@SERVER_RECV";
return SERVER_RECV;
}
}