}
private Action deserializeAction(String xml) throws OpsException {
try {
JaxbHelper jaxbHelper = JaxbHelper.get(Action.class);
return (Action) jaxbHelper.unmarshal(xml);
} catch (JAXBException e) {
throw new OpsException("Error deserializing action", e);
}
}