URL のタイプは次のとおりです。http://localhost:8080/mdnd_myshelfService_V1.0/myshelf/authenticateUserAndGetHospitalDetails?username=85010352:password=asddddsad2342#$
コントローラー クラスでは、次のメソッドを使用して、ユーザー名の病院データを認証および取得します。
@GET
@Path("/authenticateUserAndGetHospitalDetails")
//@path is not complete should be something like /authenticateUserAndGetHospitalDetails?{username}:{password}
@Produces(MediaType.APPLICATION_JSON)
public Hospital getAllHospitalData(@PathParam("userId") String userId) {
log.error("in getAllHospitalData.. " + userId + " | " );
//need to get parameter values of username and password from url
}