134 lines
5.4 KiB
Java
134 lines
5.4 KiB
Java
package com.jasamedika.medifirst2000.controller;
|
|
|
|
import java.util.Collection;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
import javax.validation.Valid;
|
|
|
|
import org.slf4j.Logger;
|
|
import org.slf4j.LoggerFactory;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.http.HttpStatus;
|
|
import org.springframework.http.MediaType;
|
|
import org.springframework.http.ResponseEntity;
|
|
import org.springframework.orm.jpa.JpaSystemException;
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RequestMethod;
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
import com.jasamedika.medifirst2000.constants.Constants;
|
|
import com.jasamedika.medifirst2000.constants.MessageResource;
|
|
import com.jasamedika.medifirst2000.controller.base.IBaseRestController;
|
|
import com.jasamedika.medifirst2000.controller.base.LocaleController;
|
|
import com.jasamedika.medifirst2000.core.web.WebConstants;
|
|
import com.jasamedika.medifirst2000.exception.ServiceVOException;
|
|
import com.jasamedika.medifirst2000.service.InseminasiService;
|
|
import com.jasamedika.medifirst2000.util.rest.RestUtil;
|
|
import com.jasamedika.medifirst2000.vo.InseminasiVO;
|
|
|
|
@RestController
|
|
@RequestMapping("/inseminasi")
|
|
public class InseminasiController extends LocaleController<InseminasiVO> implements IBaseRestController<InseminasiVO>{
|
|
|
|
@Autowired
|
|
private InseminasiService inseminasiService;
|
|
|
|
private static final Logger LOGGER = LoggerFactory
|
|
.getLogger(InseminasiController.class);
|
|
|
|
@Override
|
|
public ResponseEntity<Collection<InseminasiVO>> getAllVOWithQueryString(HttpServletRequest request, Integer page,
|
|
Integer limit, String sort, String dir) {
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public ResponseEntity<InseminasiVO> getVO(Integer id) {
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public ResponseEntity<String> addVO(InseminasiVO vo) {
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public ResponseEntity<String> editVO(InseminasiVO vo) {
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public ResponseEntity<String> deleteVO(Integer id) {
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public ResponseEntity<List<InseminasiVO>> getAllVO() {
|
|
return null;
|
|
}
|
|
|
|
|
|
@RequestMapping(value = "/save-inseminasi/", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE, consumes = MediaType.APPLICATION_JSON_VALUE)
|
|
public ResponseEntity<Map<String,Object>> addVO(@Valid @RequestBody InseminasiVO vo, HttpServletRequest request) {
|
|
|
|
try {
|
|
Map<String,Object> result=inseminasiService.saveInseminasi(vo);
|
|
if (null != result)
|
|
mapHeaderMessage.put(WebConstants.HttpHeaderInfo.LABEL_SUCCESS,getMessage(MessageResource.LABEL_SUCCESS,request ));
|
|
return RestUtil.getJsonResponse(result, HttpStatus.CREATED,mapHeaderMessage);
|
|
} catch (ServiceVOException e) {
|
|
LOGGER.error("Got exception {} when add Inseminasi", e.getMessage());
|
|
addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE,
|
|
e.getMessage());
|
|
return RestUtil.getJsonHttptatus(HttpStatus.INTERNAL_SERVER_ERROR,
|
|
mapHeaderMessage);
|
|
} catch (JpaSystemException jse) {
|
|
LOGGER.error("Got exception {} when add Inseminasi", jse.getMessage());
|
|
addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE,
|
|
jse.getMessage());
|
|
return RestUtil.getJsonHttptatus(HttpStatus.CONFLICT,
|
|
mapHeaderMessage);
|
|
}
|
|
}
|
|
|
|
// @RequestMapping(value = "/update-inseminasi/", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE, consumes = MediaType.APPLICATION_JSON_VALUE)
|
|
// public ResponseEntity<Map<String,Object>> editVO(@Valid @RequestBody InseminasiVO vo, HttpServletRequest request) {
|
|
//
|
|
// try {
|
|
// Map<String,Object> result=inseminasiService.updateInseminasi(vo);
|
|
// if (null != result)
|
|
// mapHeaderMessage.put(WebConstants.HttpHeaderInfo.LABEL_SUCCESS,getMessage(MessageResource.LABEL_SUCCESS,request ));
|
|
// return RestUtil.getJsonResponse(result, HttpStatus.CREATED,mapHeaderMessage);
|
|
// } catch (ServiceVOException e) {
|
|
// LOGGER.error("Got exception {} when update Inseminasi", e.getMessage());
|
|
// addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE,
|
|
// e.getMessage());
|
|
// return RestUtil.getJsonHttptatus(HttpStatus.INTERNAL_SERVER_ERROR,
|
|
// mapHeaderMessage);
|
|
// } catch (JpaSystemException jse) {
|
|
// LOGGER.error("Got exception {} when update Inseminasi", jse.getMessage());
|
|
// addHeaderMessage(Constants.MessageInfo.ERROR_MESSAGE,
|
|
// jse.getMessage());
|
|
// return RestUtil.getJsonHttptatus(HttpStatus.CONFLICT,
|
|
// mapHeaderMessage);
|
|
// }
|
|
// }
|
|
// @SuppressWarnings("unchecked")
|
|
// @RequestMapping(value = "/find-by-noCm/", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE, consumes = MediaType.APPLICATION_JSON_VALUE)
|
|
// public ResponseEntity<Map<String,Object>> findByNoCm(@RequestParam(value = "noCm", required = false, defaultValue = "000000000000001") String noCm,HttpServletRequest request) {
|
|
// Map<String,Object> result = inseminasiService.findByNoCm(noCm);
|
|
// Boolean dataFound=new Boolean((boolean) result.get("dataFound"));
|
|
// if(dataFound){
|
|
// mapHeaderMessage.put(WebConstants.HttpHeaderInfo.LABEL_SUCCESS,getMessage(MessageResource.LABEL_SUCCESS,request ));
|
|
// }else{
|
|
// mapHeaderMessage.put(WebConstants.HttpHeaderInfo.LABEL_ERROR,getMessage(MessageResource.LABEL_ERROR,request ));
|
|
// }
|
|
// return RestUtil.getJsonResponse(result, HttpStatus.OK);
|
|
// }
|
|
|
|
}
|