/* * Copyright (c) 2006-2007 Massachusetts General Hospital * All rights reserved. This program and the accompanying materials * are made available under the terms of the i2b2 Software License v1.0 * which accompanies this distribution. * * Contributors: * Lori Phillips */ package edu.harvard.i2b2.workplace.delegate; import edu.harvard.i2b2.common.exception.I2B2Exception; import edu.harvard.i2b2.workplace.datavo.i2b2message.MessageHeaderType; import edu.harvard.i2b2.workplace.datavo.i2b2message.ResponseMessageType; import edu.harvard.i2b2.workplace.datavo.wdo.DeleteChildType; import edu.harvard.i2b2.workplace.datavo.pm.ProjectType; import edu.harvard.i2b2.workplace.dao.FolderDao; import edu.harvard.i2b2.workplace.ws.DeleteChildDataMessage; import edu.harvard.i2b2.workplace.ws.MessageFactory; public class DeleteChildHandler extends RequestHandler { private DeleteChildDataMessage deleteChildMsg = null; private DeleteChildType deleteChildType = null; private ProjectType projectInfo = null; public DeleteChildHandler(DeleteChildDataMessage requestMsg) throws I2B2Exception{ deleteChildMsg = requestMsg; deleteChildType = requestMsg.deleteChildType(); projectInfo = getRoleInfo(requestMsg.getMessageHeaderType()); setDbInfo(requestMsg.getMessageHeaderType()); } public String execute() throws I2B2Exception{ // call ejb and pass input object FolderDao deleteChildDao = new FolderDao(); ResponseMessageType responseMessageType = null; int numDeleted = -1; // check to see if we have projectInfo (if not indicates PM service problem) if(projectInfo == null) { String response = null; responseMessageType = MessageFactory.doBuildErrorResponse(deleteChildMsg.getMessageHeaderType(), "User was not validated"); response = MessageFactory.convertToXMLString(responseMessageType); log.debug("USER_INVALID or PM_SERVICE_PROBLEM"); return response; } else { try { numDeleted = deleteChildDao.deleteNode(deleteChildType, projectInfo, this.getDbInfo()); } catch (Exception e1) { log.error("DeleteChildHandler received exception"); responseMessageType = MessageFactory.doBuildErrorResponse(deleteChildMsg.getMessageHeaderType(), "Database error"); } } // no errors found if(responseMessageType == null) { // no db error but response is empty if (numDeleted == 0) { log.error("delete object not found"); responseMessageType = MessageFactory.doBuildErrorResponse(deleteChildMsg.getMessageHeaderType(), "Node not found"); } else if (numDeleted == -1) { log.error("database error"); responseMessageType = MessageFactory.doBuildErrorResponse(deleteChildMsg.getMessageHeaderType(), "Database error"); } else { MessageHeaderType messageHeader = MessageFactory.createResponseMessageHeader(deleteChildMsg.getMessageHeaderType()); responseMessageType = MessageFactory.createBuildResponse(messageHeader, null); } } String responseWdo = null; responseWdo = MessageFactory.convertToXMLString(responseMessageType); return responseWdo; } }