mirror of
https://github.com/wahyd4/pinpoint.git
synced 2026-08-16 16:28:48 +10:00
git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-tomcat-profiler/trunk@874 84d0f5b1-2673-498c-a247-62c4ff18d310
23 lines
362 B
Java
23 lines
362 B
Java
package com.profiler.context;
|
|
|
|
public enum Annotation {
|
|
@Deprecated
|
|
ClientSend("CS"),
|
|
@Deprecated
|
|
ClientRecv("CR"),
|
|
@Deprecated
|
|
ServerSend("SS"),
|
|
@Deprecated
|
|
ServerRecv("SR");
|
|
|
|
private String code;
|
|
|
|
Annotation(String code) {
|
|
this.code = code;
|
|
}
|
|
|
|
public String getCode() {
|
|
return this.code;
|
|
}
|
|
}
|