?? xfireproxyfactorybean.java
字號:
package org.codehaus.xfire.spring.remoting;import java.net.MalformedURLException;import org.springframework.aop.framework.ProxyFactory;import org.springframework.beans.factory.FactoryBean;/** * Factory bean for XFire proxies. Behaves like the proxied service when used as bean reference, exposing the specified * service interface. * <p/> * The service URL must be an HTTP URL exposing a SOAP service. For details, see <code>XFireClientInterceptor</code> * docs. * * @author <a href="mailto:poutsma@mac.com">Arjen Poutsma</a> * @see #setServiceInterface * @see #setServiceUrl * * @deprecated Please use XFireClientFactoryBean instead. */public class XFireProxyFactoryBean extends XFireClientInterceptor implements FactoryBean{ private Object serviceProxy; public void afterPropertiesSet() throws MalformedURLException { super.afterPropertiesSet(); this.serviceProxy = ProxyFactory.getProxy(getService().getServiceClass(), this); } public Object getObject() { return this.serviceProxy; } public Class getObjectType() { return (this.serviceProxy != null) ? this.serviceProxy.getClass() : getService().getServiceClass(); } public boolean isSingleton() { return true; }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -