[강운덕] [LUCYSUS-1744] Span 데이터 구조를 api 호출 방식으로 변경하기 위해서 start end time위주로 변경함.

git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-tomcat-profiler/trunk@874 84d0f5b1-2673-498c-a247-62c4ff18d310
This commit is contained in:
Woonduk Kang
2012-11-19 08:09:14 +00:00
parent b8c73bfdef
commit 6ca5154931
11 changed files with 116 additions and 101 deletions
@@ -1,15 +1,22 @@
package com.profiler.context;
public enum Annotation {
ClientSend("CS"), ClientRecv("CR"), ServerSend("SS"), ServerRecv("SR");
@Deprecated
ClientSend("CS"),
@Deprecated
ClientRecv("CR"),
@Deprecated
ServerSend("SS"),
@Deprecated
ServerRecv("SR");
private String code;
private String code;
Annotation(String code) {
this.code = code;
}
Annotation(String code) {
this.code = code;
}
public String getCode() {
return this.code;
}
public String getCode() {
return this.code;
}
}