deprecated remoting support for JAX-RPC (in favor of JAX-WS)
This commit is contained in:
parent
54221500c1
commit
a83756f771
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2002-2008 the original author or authors.
|
||||
* Copyright 2002-2009 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
|
@ -73,7 +73,9 @@ import org.springframework.util.ReflectionUtils;
|
|||
* @see javax.xml.rpc.Service#getPort
|
||||
* @see org.springframework.remoting.RemoteAccessException
|
||||
* @see org.springframework.jndi.JndiObjectFactoryBean
|
||||
* @deprecated in favor of JAX-WS support in <code>org.springframework.remoting.jaxws</code>
|
||||
*/
|
||||
@Deprecated
|
||||
public class JaxRpcPortClientInterceptor extends LocalJaxRpcServiceFactory
|
||||
implements MethodInterceptor, InitializingBean {
|
||||
|
||||
|
|
|
|||
|
|
@ -43,7 +43,9 @@ import org.springframework.util.ClassUtils;
|
|||
* @see #setServiceInterface
|
||||
* @see #setPortInterface
|
||||
* @see LocalJaxRpcServiceFactoryBean
|
||||
* @deprecated in favor of JAX-WS support in <code>org.springframework.remoting.jaxws</code>
|
||||
*/
|
||||
@Deprecated
|
||||
public class JaxRpcPortProxyFactoryBean extends JaxRpcPortClientInterceptor
|
||||
implements FactoryBean<Object>, BeanClassLoaderAware {
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2002-2007 the original author or authors.
|
||||
* Copyright 2002-2009 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
|
@ -38,7 +38,9 @@ import javax.xml.rpc.Service;
|
|||
* @see JaxRpcPortClientInterceptor#setServicePostProcessors
|
||||
* @see JaxRpcPortProxyFactoryBean#setServicePostProcessors
|
||||
* @see javax.xml.rpc.Service#getTypeMappingRegistry
|
||||
* @deprecated in favor of JAX-WS support in <code>org.springframework.remoting.jaxws</code>
|
||||
*/
|
||||
@Deprecated
|
||||
public interface JaxRpcServicePostProcessor {
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2002-2007 the original author or authors.
|
||||
* Copyright 2002-2009 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
|
@ -27,7 +27,9 @@ import org.springframework.remoting.soap.SoapFaultException;
|
|||
*
|
||||
* @author Juergen Hoeller
|
||||
* @since 2.5
|
||||
* @deprecated in favor of JAX-WS support in <code>org.springframework.remoting.jaxws</code>
|
||||
*/
|
||||
@Deprecated
|
||||
public class JaxRpcSoapFaultException extends SoapFaultException {
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2002-2007 the original author or authors.
|
||||
* Copyright 2002-2009 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
|
@ -43,7 +43,9 @@ import org.springframework.beans.BeanUtils;
|
|||
* @see LocalJaxRpcServiceFactoryBean
|
||||
* @see JaxRpcPortClientInterceptor
|
||||
* @see JaxRpcPortProxyFactoryBean
|
||||
* @deprecated in favor of JAX-WS support in <code>org.springframework.remoting.jaxws</code>
|
||||
*/
|
||||
@Deprecated
|
||||
public class LocalJaxRpcServiceFactory {
|
||||
|
||||
/** Logger available to subclasses */
|
||||
|
|
|
|||
|
|
@ -35,7 +35,9 @@ import org.springframework.beans.factory.InitializingBean;
|
|||
* @see javax.xml.rpc.Service
|
||||
* @see org.springframework.jndi.JndiObjectFactoryBean
|
||||
* @see JaxRpcPortProxyFactoryBean
|
||||
* @deprecated in favor of JAX-WS support in <code>org.springframework.remoting.jaxws</code>
|
||||
*/
|
||||
@Deprecated
|
||||
public class LocalJaxRpcServiceFactoryBean extends LocalJaxRpcServiceFactory
|
||||
implements FactoryBean<Service>, InitializingBean {
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2002-2007 the original author or authors.
|
||||
* Copyright 2002-2009 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
|
@ -17,7 +17,6 @@
|
|||
package org.springframework.remoting.jaxrpc;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
import javax.servlet.ServletContext;
|
||||
import javax.xml.rpc.ServiceException;
|
||||
import javax.xml.rpc.server.ServiceLifecycle;
|
||||
|
|
@ -57,7 +56,9 @@ import org.springframework.web.util.WebUtils;
|
|||
* @since 16.12.2003
|
||||
* @see #init
|
||||
* @see #getWebApplicationContext
|
||||
* @deprecated in favor of JAX-WS support in <code>org.springframework.remoting.jaxws</code>
|
||||
*/
|
||||
@Deprecated
|
||||
public abstract class ServletEndpointSupport implements ServiceLifecycle {
|
||||
|
||||
protected final Log logger = LogFactory.getLog(getClass());
|
||||
|
|
|
|||
Loading…
Reference in New Issue