
io.github.factoryfx.soap.SoapHandlerFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of soapFactory Show documentation
Show all versions of soapFactory Show documentation
factoryfx dependency injection framework
The newest version!
package io.github.factoryfx.soap;
import io.github.factoryfx.factory.FactoryBase;
import io.github.factoryfx.factory.SimpleFactoryBase;
import io.github.factoryfx.factory.attribute.dependency.FactoryAttribute;
public class SoapHandlerFactory> extends SimpleFactoryBase {
public final FactoryAttribute> serviceBean = new FactoryAttribute<>();
@Override
protected SoapHandler createImpl() {
S webService = serviceBean.instance();
return new SoapHandler(new WebServiceRequestDispatcher(webService), new SOAPMessageUtil(JAXBSoapUtil.getJAXBContextForWebService(webService.getClass())));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy