Class MatchMakingResultResource
- java.lang.Object
-
- fi.tut.mei.matchmaking.matching_ws.rest.resources.MatchMakingResultResource
-
@Path("/matchmakingresult") public class MatchMakingResultResource extends Object
-
-
Constructor Summary
Constructors Constructor Description MatchMakingResultResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description fi.tut.mei.matchmaking.model.xml.msg.MatchmakingResult
getMatchMakingResult(fi.tut.mei.matchmaking.model.xml.msg.MatchmakingResultReq resultReq)
fi.tut.mei.matchmaking.model.xml.msg.MatchmakingResult
getMatchMakingResultById(javax.ws.rs.core.HttpHeaders httpHeaders, String id)
fi.tut.mei.matchmaking.model.xml.msg.SaveMatchesResp
getMatchMakingResultSelectedCombinations(javax.ws.rs.core.HttpHeaders httpHeaders, String id, fi.tut.mei.matchmaking.model.xml.msg.SaveMatchmakingResultReq saveRequest)
-
-
-
Method Detail
-
getMatchMakingResult
@POST @Consumes("application/xml") @Produces({"application/xml","application/json"}) public fi.tut.mei.matchmaking.model.xml.msg.MatchmakingResult getMatchMakingResult(fi.tut.mei.matchmaking.model.xml.msg.MatchmakingResultReq resultReq)
-
getMatchMakingResultById
@GET @Path("/{id}") @Produces({"application/xml","application/json"}) public fi.tut.mei.matchmaking.model.xml.msg.MatchmakingResult getMatchMakingResultById(@Context javax.ws.rs.core.HttpHeaders httpHeaders, @PathParam("id") String id)
-
getMatchMakingResultSelectedCombinations
@POST @Path("/{id}/save-combinations/") @Consumes({"application/xml","application/json"}) @Produces({"application/xml","application/json"}) public fi.tut.mei.matchmaking.model.xml.msg.SaveMatchesResp getMatchMakingResultSelectedCombinations(@Context javax.ws.rs.core.HttpHeaders httpHeaders, @PathParam("id") String id, fi.tut.mei.matchmaking.model.xml.msg.SaveMatchmakingResultReq saveRequest)
-
-