Renamed class.
This commit is contained in:
@@ -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;
|
||||
@@ -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)
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user