Class WsEventingFaultFactory
- java.lang.Object
-
- org.somda.sdc.dpws.soap.wseventing.factory.WsEventingFaultFactory
-
public class WsEventingFaultFactory extends Object
Factory functions to create WS-Eventing related fault messages.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SoapMessagecreateDeliveryModeRequestedUnavailable()Creates DeliveryModeRequestedUnavailable fault messages.SoapMessagecreateEventSourceUnableToProcess(String reason)Creates EventSourceUnableToProcess fault messages.SoapMessagecreateFilteringNotSupported()Creates FilteringNotSupported fault messages.SoapMessagecreateFilteringRequestedUnavailable()Creates FilteringRequestedUnavailable fault messages.SoapMessagecreateInvalidExpirationTime()Creates InvalidExpirationTime fault messages.SoapMessagecreateInvalidMessage(String reason, Envelope invalidMessage)Creates InvalidMessage fault messages.SoapMessagecreateUnableToRenew(String reason)Creates UnableToRenew fault messages.SoapMessagecreateUnsupportedExpirationType()Creates UnsupportedExpirationType fault messages.
-
-
-
Method Detail
-
createDeliveryModeRequestedUnavailable
public SoapMessage createDeliveryModeRequestedUnavailable()
Creates DeliveryModeRequestedUnavailable fault messages.- Returns:
- the fault message.
- See Also:
- WS-Eventing specification
-
createInvalidExpirationTime
public SoapMessage createInvalidExpirationTime()
Creates InvalidExpirationTime fault messages.- Returns:
- the fault message.
- See Also:
- WS-Eventing specification
-
createUnsupportedExpirationType
public SoapMessage createUnsupportedExpirationType()
Creates UnsupportedExpirationType fault messages.- Returns:
- the fault message.
- See Also:
- WS-Eventing specification
-
createFilteringNotSupported
public SoapMessage createFilteringNotSupported()
Creates FilteringNotSupported fault messages.- Returns:
- the fault message.
- See Also:
- WS-Eventing specification
-
createFilteringRequestedUnavailable
public SoapMessage createFilteringRequestedUnavailable()
Creates FilteringRequestedUnavailable fault messages.- Returns:
- the fault message.
- See Also:
- WS-Eventing specification
-
createEventSourceUnableToProcess
public SoapMessage createEventSourceUnableToProcess(String reason)
Creates EventSourceUnableToProcess fault messages.- Parameters:
reason- a specific reason text.- Returns:
- the fault message.
- See Also:
- WS-Eventing specification
-
createUnableToRenew
public SoapMessage createUnableToRenew(String reason)
Creates UnableToRenew fault messages.- Parameters:
reason- a specific reason text.- Returns:
- the fault message.
- See Also:
- WS-Eventing specification
-
createInvalidMessage
public SoapMessage createInvalidMessage(String reason, Envelope invalidMessage)
Creates InvalidMessage fault messages.- Parameters:
reason- a specific reason text.invalidMessage- the invalid message to put to the fault.- Returns:
- the fault message.
- See Also:
- WS-Eventing specification
-
-