/**
* @param endpoint
* @param ei
*/
private void retrieveWSDLInformation(JMSEndpoint endpoint, EndpointInfo ei) {
JndiContextParameterType jndiContextParameterType =
getWSDLExtensor(ei, JndiContextParameterType.class);
if (jndiContextParameterType != null
&& endpoint.getJndiParameters().get(jndiContextParameterType.getName()) == null) {
endpoint.putJndiParameter(jndiContextParameterType.getName().trim(),
jndiContextParameterType.getValue().trim());
}
if (endpoint.getJndiConnectionFactoryName() == null) {
JndiConnectionFactoryNameType jndiConnectionFactoryNameType = getWSDLExtensor(
ei, JndiConnectionFactoryNameType.class);