Skip to content

Commit ed2fb66

Browse files
committed
Javadoc
1 parent 336a98d commit ed2fb66

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

core/src/main/java/org/springframework/ws/soap/server/endpoint/SoapFaultMappingExceptionResolver.java

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@
2727
import org.springframework.ws.soap.soap11.Soap11Body;
2828

2929
/**
30-
* Exception resolver that generates a <code>&lt;soap:fault&gt;</code> based on the given exception.
30+
* Exception resolver that allows for mapping exception class names to SOAP Faults. The mappings are set using the
31+
* <code>exceptionMappings</code> property, the format of which is documented in {@link SoapFaultDefinitionEditor}.
3132
*
3233
* @author Arjen Poutsma
3334
*/
@@ -44,12 +45,15 @@ public class SoapFaultMappingExceptionResolver extends AbstractEndpointException
4445
* The values of the given properties object should use the format described in
4546
* <code>SoapFaultDefinitionEditor</code>.
4647
* <p/>
47-
* Follows the same matching algorithm as RuleBasedTransactionAttribute and RollbackRuleAttribute.
48+
* Follows the same matching algorithm as <code>RuleBasedTransactionAttribute</code> and
49+
* <code>RollbackRuleAttribute</code>.
4850
*
4951
* @param mappings exception patterns (can also be fully qualified class names) as keys, fault definition texts as
5052
* values
5153
* @see SoapFaultDefinitionEditor
5254
* @see org.springframework.web.servlet.handler.SimpleMappingExceptionResolver
55+
* @see org.springframework.transaction.interceptor.RuleBasedTransactionAttribute
56+
* @see org.springframework.transaction.interceptor.RollbackRuleAttribute
5357
*/
5458
public void setExceptionMappings(Properties mappings) {
5559
exceptionMappings = mappings;

0 commit comments

Comments
 (0)