protected String marshall(ParameterInstantiations jaxb) throws XmlException {
return(parser.marshall(jaxb));
}
protected ParameterInstantiations unmarshall(String xml) throws XmlException {
ParameterInstantiations jaxb = null;
try {
jaxb = (ParameterInstantiations)parser.unmarshall(xml);
} catch(ClassCastException e) {
throw new XmlException("The given message was not a ParameterInstantiations Message - ClassCastException: " + e.getMessage(), e);
}