596061626364656667
String factoryName = components[0]; EncodingProxyFactory factory = _factories.get(factoryName); if (factory == null) throw new UnknownServiceEncodingException(factoryName); return factory.getProxy(serviceInterface, components[1]); }
777879808182838485
String factoryName = components[0]; EncodingProxyFactory factory = _factories.get(factoryName); if (factory == null) throw new UnknownServiceEncodingException(factoryName); return factory.getProxy(serviceInterface, components[1], jaxbPackages); }
9596979899100101102103
String factoryName = components[0]; EncodingProxyFactory factory = _factories.get(factoryName); if (factory == null) throw new UnknownServiceEncodingException(factoryName); return factory.getProxy(serviceInterface, components[1], jaxbClasses); }