Renamed class.

This commit is contained in:
Arjen Poutsma
2007-04-19 00:02:17 +00:00
parent 3651b9ab34
commit 494edbb56e
3 changed files with 5 additions and 5 deletions

View File

@@ -56,7 +56,7 @@ import org.w3c.dom.NodeList;
*
* @author Arjen Poutsma
*/
public class XPathParamMethodAnnotationEndpointAdapter extends AbstractMethodEndpointAdapter
public class XPathParamAnnotationMethodEndpointAdapter extends AbstractMethodEndpointAdapter
implements InitializingBean {
private XPathFactory xpathFactory;

View File

@@ -28,7 +28,7 @@ import java.lang.annotation.Target;
* org.w3c.dom.Node}</li> <li>{@link org.w3c.dom.NodeList}</li> </ul>
*
* @author Arjen Poutsma
* @see org.springframework.ws.server.endpoint.adapter.XPathParamMethodAnnotationEndpointAdapter
* @see org.springframework.ws.server.endpoint.adapter.XPathParamAnnotationMethodEndpointAdapter
*/
@Target(ElementType.PARAMETER)
@Retention(RetentionPolicy.RUNTIME)

View File

@@ -31,18 +31,18 @@ import org.springframework.xml.transform.StringSource;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
public class XPathParamMethodAnnotationEndpointAdapterTest extends TestCase {
public class XPathParamAnnotationMethodEndpointAdapterTest extends TestCase {
private static final String CONTENTS = "<root><child><text>text</text><number>42.0</number></child></root>";
private XPathParamMethodAnnotationEndpointAdapter adapter;
private XPathParamAnnotationMethodEndpointAdapter adapter;
private boolean supportedTypesInvoked = false;
private boolean supportedSourceInvoked;
protected void setUp() throws Exception {
adapter = new XPathParamMethodAnnotationEndpointAdapter();
adapter = new XPathParamAnnotationMethodEndpointAdapter();
adapter.afterPropertiesSet();
}