[강운덕] [WEB-102] 코드 정리.

git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-web/trunk@3601 84d0f5b1-2673-498c-a247-62c4ff18d310
This commit is contained in:
Woonduk Kang
2014-04-04 05:19:41 +00:00
parent b915672194
commit 2ea2ac4e9b
3 changed files with 6 additions and 2 deletions
@@ -33,9 +33,9 @@ public class MainController {
@ResponseBody
public ApplicationGroup getApplicationGroup() {
List<Application> applicationList = commonService.selectAllApplicationNames();
logger.debug("/applications, {}", applicationList);
logger.debug("/applications {}", applicationList);
return new ApplicationGroup(applicationList);
return new ApplicationGroup(applicationList);
}
@RequestMapping(value = "/serverTime", method = RequestMethod.GET)
@@ -82,6 +82,7 @@ public class FilteredMapServiceImpl implements FilteredMapService {
}
@Override
@Deprecated
public LoadFactor linkStatistics(Range range, List<TransactionId> traceIdSet, Application sourceApplication, Application destinationApplication, Filter filter) {
if (sourceApplication == null) {
throw new NullPointerException("sourceApplication must not be null");
@@ -1,5 +1,7 @@
package com.nhn.pinpoint.web.view;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* @author emeroad
*/
@@ -11,6 +13,7 @@ public class ServerTime {
this.currentServerTime = System.currentTimeMillis();
}
@JsonProperty("currentServerTime")
public long getCurrentServerTime() {
return currentServerTime;
}