Package com.funambol.syncclient.blackberry.email.impl

Examples of com.funambol.syncclient.blackberry.email.impl.NotificationProcessor


                 * The NotificationProcessor reads the
                 * binary SMS notification message and extracts
                 * informations from it that are stored into a
                 * passed hashtable
                 */
                NotificationProcessor processor = new NotificationProcessor();
               
                /*
                 * The hashtable to be passed to the
                 * notification processor to be filled
                 * with data from the binary SMS from
                 * the server. See
                 * NotificationProcessor.processMessage
                 */
                Hashtable smsData = new Hashtable();
               
                //getData() returns an array of bytes
                processor.processMessage(smsData, removeHeader(d.getData()));
               
                if (smsData != null) {
                   
                    StaticDataHelper.log("[SMS] Data from SMS message:\n" + smsData.toString());
           
View Full Code Here

TOP

Related Classes of com.funambol.syncclient.blackberry.email.impl.NotificationProcessor

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.