/* * 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: * Raj Kuttan * Lori Phillips */ package edu.harvard.i2b2.workplace.ws; import edu.harvard.i2b2.common.exception.I2B2Exception; import edu.harvard.i2b2.common.util.jaxb.JAXBUnWrapHelper; import edu.harvard.i2b2.common.util.jaxb.JAXBUtilException; import edu.harvard.i2b2.workplace.datavo.i2b2message.BodyType; import edu.harvard.i2b2.workplace.datavo.wdo.RenameChildType; /** * The RenameChildDataMessage class is a helper class to build Workplace messages in the * i2b2 format */ public class RenameChildDataMessage extends RequestDataMessage{ public RenameChildDataMessage() { } /** * Function to get RenameChildType object from i2b2 request message type * @return * @throws I2B2Exception */ public RenameChildType getRenameChildType() throws I2B2Exception { RenameChildType renameChildType; try { BodyType bodyType = reqMessageType.getMessageBody(); JAXBUnWrapHelper helper = new JAXBUnWrapHelper(); renameChildType = (RenameChildType) helper.getObjectByClass(bodyType.getAny(), RenameChildType.class); } catch (JAXBUtilException e) { throw new I2B2Exception("Unwrap error: " + e.getMessage(), e); } return renameChildType; } }