[2180] trunk/xfire/xfire-spring/src/main/org/codehaus/xfire/spring/ServiceBean.java: support for seting WSDLWriter with ServiceBean
<tomeks <at> codehaus.org>
2007-06-11 19:17:47 GMT
Revision
2180
Author tomeks
Date 2007-06-11 14:17:46 -0500 (Mon, 11 Jun 2007)
Log Message
support for seting WSDLWriter with ServiceBean
Modified Paths
Diff
Modified: trunk/xfire/xfire-spring/src/main/org/codehaus/xfire/spring/ServiceBean.java (2179 => 2180)
--- trunk/xfire/xfire-spring/src/main/org/codehaus/xfire/spring/ServiceBean.java 2007-06-11 19:05:37 UTC (rev 2179)
+++ trunk/xfire/xfire-spring/src/main/org/codehaus/xfire/spring/ServiceBean.java 2007-06-11 19:17:46 UTC (rev 2180)
<at> <at> -24,6 +24,7 <at> <at>
import org.codehaus.xfire.spring.config.Soap12BindingBean;
import org.codehaus.xfire.spring.config.SpringServiceConfiguration;
import org.codehaus.xfire.util.Resolver;
+import org.codehaus.xfire.wsdl.WSDLWriter;
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.context.ApplicationContext;
<at> <at> -98,6 +99,8 <at> <at>
private Invoker invoker;
private Object executor;
+
+ private WSDLWriter wsdlWriter;
public void afterPropertiesSet()
throws Exception
<at> <at> -209,6 +212,10 <at> <at>
}
}
+ if(getWsdlWriter()!=null){
+ xfireService.setWSDLWriter(getWsdlWriter());
+ }
+
// set up in handlers
if (xfireService.getInHandlers() == null)
xfireService.setInHandlers(getInHandlers());
<at> <at> -528,4 +535,12 <at> <at>
this.serviceConfiguration = serviceConfiguration;
}
+ public WSDLWriter getWsdlWriter() {
+ return wsdlWriter;
+ }
+
+ public void setWsdlWriter(WSDLWriter wsdlWriter) {
+ this.wsdlWriter = wsdlWriter;
+ }
+
}
\ No newline at end of file
To unsubscribe from this list please visit:
http://xircles.codehaus.org/manage_email