eliminated all javadoc warnings; no API changes, with the exception of adding generics metadata to GatewayProxyFactoryBean (now 'implements FactoryBean<Object>').
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2008 the original author or authors.
|
||||
* Copyright 2002-2010 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.
|
||||
@@ -42,28 +42,28 @@ public class XPathMultiChannelRouter extends AbstractXPathRouter {
|
||||
|
||||
|
||||
/**
|
||||
* @see AbstractXPathRouter#AbstractXPathChannelNameResolver(String, Map)
|
||||
* @see AbstractXPathRouter#AbstractXPathRouter(String, Map)
|
||||
*/
|
||||
public XPathMultiChannelRouter(String expression, Map<String, String> namespaces) {
|
||||
super(expression, namespaces);
|
||||
}
|
||||
|
||||
/**
|
||||
* @see AbstractXPathRouter#AbstractXPathChannelNameResolver(String, String, String)
|
||||
* @see AbstractXPathRouter#AbstractXPathRouter(String, String, String)
|
||||
*/
|
||||
public XPathMultiChannelRouter(String expression, String prefix, String namespace) {
|
||||
super(expression, prefix, namespace);
|
||||
}
|
||||
|
||||
/**
|
||||
* @see AbstractXPathRouter#AbstractXPathChannelNameResolver(String)
|
||||
* @see AbstractXPathRouter#AbstractXPathRouter(String)
|
||||
*/
|
||||
public XPathMultiChannelRouter(String expression) {
|
||||
super(expression);
|
||||
}
|
||||
|
||||
/**
|
||||
* @see AbstractXPathRouter#AbstractXPathChannelNameResolver(XPathExpression)
|
||||
* @see AbstractXPathRouter#AbstractXPathRouter(XPathExpression)
|
||||
*/
|
||||
public XPathMultiChannelRouter(XPathExpression expression) {
|
||||
super(expression);
|
||||
|
||||
@@ -40,28 +40,28 @@ import org.w3c.dom.Node;
|
||||
public class XPathSingleChannelRouter extends AbstractXPathRouter {
|
||||
|
||||
/**
|
||||
* @see AbstractXPathRouter#AbstractXPathChannelNameResolver(String, Map)
|
||||
* @see AbstractXPathRouter#AbstractXPathRouter(String, Map)
|
||||
*/
|
||||
public XPathSingleChannelRouter(String expression, Map<String, String> namespaces) {
|
||||
super(expression, namespaces);
|
||||
}
|
||||
|
||||
/**
|
||||
* @see AbstractXPathRouter#AbstractXPathChannelNameResolver(String, String, String)
|
||||
* @see AbstractXPathRouter#AbstractXPathRouter(String, String, String)
|
||||
*/
|
||||
public XPathSingleChannelRouter(String expression, String prefix, String namespace) {
|
||||
super(expression, prefix, namespace);
|
||||
}
|
||||
|
||||
/**
|
||||
* @see AbstractXPathRouter#AbstractXPathChannelNameResolver(String)
|
||||
* @see AbstractXPathRouter#AbstractXPathRouter(String)
|
||||
*/
|
||||
public XPathSingleChannelRouter(String expression) {
|
||||
super(expression);
|
||||
}
|
||||
|
||||
/**
|
||||
* @see AbstractXPathRouter#AbstractXPathChannelNameResolver(XPathExpression)
|
||||
* @see AbstractXPathRouter#AbstractXPathRouter(XPathExpression)
|
||||
*/
|
||||
public XPathSingleChannelRouter(XPathExpression expression) {
|
||||
super(expression);
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2008 the original author or authors.
|
||||
* Copyright 2002-2010 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,9 +27,7 @@ import javax.xml.transform.Source;
|
||||
public interface SourceFactory {
|
||||
|
||||
/**
|
||||
* Create appropriate {@link Source} instance for payload
|
||||
* @param payload
|
||||
* @return
|
||||
* Create appropriate {@link Source} instance for {@code payload}
|
||||
*/
|
||||
Source createSource(Object payload);
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2009 the original author or authors.
|
||||
* Copyright 2002-2010 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,6 +27,7 @@ import org.w3c.dom.Document;
|
||||
|
||||
import org.springframework.integration.core.MessagingException;
|
||||
import org.springframework.integration.transformer.AbstractPayloadTransformer;
|
||||
import org.springframework.integration.transformer.Transformer;
|
||||
import org.springframework.integration.xml.source.DomSourceFactory;
|
||||
import org.springframework.integration.xml.source.SourceFactory;
|
||||
import org.springframework.oxm.Unmarshaller;
|
||||
@@ -34,7 +35,7 @@ import org.springframework.util.Assert;
|
||||
import org.springframework.xml.transform.StringSource;
|
||||
|
||||
/**
|
||||
* An implementation of {@link PayloadTransformer} that delegates to an OXM
|
||||
* An implementation of {@link Transformer} that delegates to an OXM
|
||||
* {@link Unmarshaller}. Expects the payload to be of type {@link Document},
|
||||
* {@link String}, {@link File}, {@link Source} or to have an instance of
|
||||
* {@link SourceFactory} that can convert to a {@link Source}. If
|
||||
|
||||
Reference in New Issue
Block a user