Skip to content
This repository has been archived by the owner on Jul 13, 2022. It is now read-only.

Commit

Permalink
Fix for handling HTTP requests properly
Browse files Browse the repository at this point in the history
  • Loading branch information
mbogoevici committed Sep 10, 2012
1 parent 7d44e90 commit 0e29431
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,13 @@ public Source processTripRequest(Source requestSource) throws Exception{
return new StringSource(res.toString());
}

public OkResponse processTripRequest(String requestSource) throws Exception{
logger.info("Trip request recevied");
return new OkResponse();
}

public OkResponse processTripRequest(LegQuoteCommand legQuoteCommand) throws Exception{
logger.info("Trip request received:" + legQuoteCommand);
StringResult res = new StringResult();
return new OkResponse();
}

Expand Down

0 comments on commit 0e29431

Please sign in to comment.