com.google.android.mms.pdu_alt.NotifyRespInd

Here are the examples of the java api class com.google.android.mms.pdu_alt.NotifyRespInd taken from open source projects.

1. NotificationTransaction#sendNotifyRespInd()

Project: qksms
File: NotificationTransaction.java
private void sendNotifyRespInd(int status) throws MmsException, IOException {
    // Create the M-NotifyResp.ind
    NotifyRespInd notifyRespInd = new NotifyRespInd(PduHeaders.CURRENT_MMS_VERSION, mNotificationInd.getTransactionId(), status);
    // Pack M-NotifyResp.ind and send it
    if (MmsConfig.getNotifyWapMMSC()) {
        sendPdu(new PduComposer(mContext, notifyRespInd).make(), mContentLocation);
    } else {
        sendPdu(new PduComposer(mContext, notifyRespInd).make());
    }
}