mirror of
https://github.com/wahyd4/pinpoint.git
synced 2026-08-17 00:36:02 +10:00
[유치수] [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:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user