Class AbstractWsRejectionHandlingStrategy
- java.lang.Object
-
- org.openehealth.ipf.commons.ihe.ws.cxf.AbstractWsRejectionHandlingStrategy
-
- All Implemented Interfaces:
WsRejectionHandlingStrategy
public abstract class AbstractWsRejectionHandlingStrategy extends Object implements WsRejectionHandlingStrategy
Rejection handling strategy base for WS transactions.- Author:
- Dmytro Rud
-
-
Constructor Summary
Constructors Constructor Description AbstractWsRejectionHandlingStrategy()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisRejected(org.apache.cxf.message.Exchange cxfExchange)This method should returntruewhen the given CXF exchange can be considered rejected (failed).-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.openehealth.ipf.commons.ihe.ws.cxf.WsRejectionHandlingStrategy
handleRejectedExchange
-
-
-
-
Method Detail
-
isRejected
public boolean isRejected(org.apache.cxf.message.Exchange cxfExchange)
Description copied from interface:WsRejectionHandlingStrategyThis method should returntruewhen the given CXF exchange can be considered rejected (failed).- Specified by:
isRejectedin interfaceWsRejectionHandlingStrategy- Parameters:
cxfExchange- CXF exchange under consideration.- Returns:
truewhen the given CXF exchange has been rejected;falseotherwise.- See Also:
SoapUtils.extractOutgoingException(org.apache.cxf.message.Exchange)
-
-