Package org.jsmpp

Examples of org.jsmpp.GenericNackResponseException


    public void processGenericNack(Command pduHeader, byte[] pdu,
            BaseResponseHandler responseHandler) throws IOException {
        PendingResponse<Command> pendingResp = responseHandler
                .removeSentItem(pduHeader.getSequenceNumber());
        if (pendingResp != null) {
            pendingResp.doneWithInvalidResponse(new GenericNackResponseException(
                    "Receive generic_nack with command_status "
                            + pduHeader.getCommandStatusAsHex(), pduHeader.getCommandStatus()));
            logger.error("Receive generick_nack. "
                    + "command_status=" + pduHeader.getCommandStatusAsHex()
                    + ", sequence_number="
View Full Code Here

TOP

Related Classes of org.jsmpp.GenericNackResponseException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.