com.opencloud.slee.resources.mm7
Interface ExtendedCancelActivity

All Superinterfaces:
MM7Activity

public interface ExtendedCancelActivity
extends MM7Activity

Activity representing a MM7 transaction that involves a Extended Cancel Request/Response pair.

Since:
MM7 v.6.8.0

Method Summary
 void sendExtendedCancelResponse(MM7StatusCode result)
          Send a ExtendedCancelResponse to the incoming request this activity is responsible for.
 
Methods inherited from interface com.opencloud.slee.resources.mm7.MM7Activity
getProvider, getTransactionID, sendErrorResponse
 

Method Detail

sendExtendedCancelResponse

void sendExtendedCancelResponse(MM7StatusCode result)
                                throws ValidationException,
                                       java.io.IOException,
                                       java.lang.IllegalStateException
Send a ExtendedCancelResponse to the incoming request this activity is responsible for. To send an error response, use MM7Activity#sendErrorResponse.

Parameters:
result - the MM7StatusCode to include in the response; must be a success status code (Only status code number will be send in case of ExtendedCancelActivity).
Throws:
ValidationException - if result is null or is not a success status code
java.io.IOException - if the response could not be generated due to an internal error
java.lang.IllegalStateException - if this activity is not handling a request, or a response has already been sent.