?? jaxbwsdlbuilderfactory.java
字號:
package org.codehaus.xfire.jaxb2;
import javax.wsdl.WSDLException;
import org.codehaus.xfire.XFireRuntimeException;
import org.codehaus.xfire.service.Service;
import org.codehaus.xfire.transport.TransportManager;
import org.codehaus.xfire.wsdl11.builder.WSDLBuilder;
import org.codehaus.xfire.wsdl11.builder.WSDLBuilderFactory;
/**
*/
public class JaxbWSDLBuilderFactory
implements WSDLBuilderFactory
{
public WSDLBuilder createWSDLBuilder(Service service, TransportManager transportManager)
{
try
{
return new JaxbWSDLBuilder(service, transportManager);
}
catch (WSDLException e)
{
throw new XFireRuntimeException("Error creating the WSDLBuilder", e);
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -