Skip to content

Commit

Permalink
Merge pull request #305 from pahnjy/develop
Browse files Browse the repository at this point in the history
Session Interface 추가 #304
  • Loading branch information
pahnjy authored Dec 19, 2016
2 parents b38a7c7 + b5ad954 commit a6298bf
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,13 @@ public List<Session> retrieveSessionDataByTime(@PathVariable int time){
return sessionList;
}

@RequestMapping(value = "/collection/{id}")
@ResponseStatus(value = HttpStatus.OK)
public Session retrieveSessionDetail(@PathVariable String id){
return sessionStore.retrieveSessionDetail(id);
}


private List<SessionTransFormObject> sessionToTransFormObject(List<Session> sessionList){
List<SessionTransFormObject> sessionTransFormObjects = new ArrayList<>();
for(Session session : sessionList){
Expand Down

0 comments on commit a6298bf

Please sign in to comment.