getClass().getClassLoader());
Unmarshaller u = context.createUnmarshaller();
JAXBElement<TLSClientParametersType> jaxb =
u.unmarshal(n, TLSClientParametersType.class);
TLSClientParameters params =
new TLSClientParametersConfig(jaxb.getValue());
bean.addPropertyValue("tlsClientParameters", params);
} catch (Exception e) {
throw new RuntimeException("Could not process configuration.", e);
}
}