Package com.funambol.syncclient.sps

Examples of com.funambol.syncclient.sps.MailDataStore


                        dataStore.setLastTimestamp(0l);
                    } else if ("calendar".equals(remoteDBType)) {
                        EventDataStore dataStore = (EventDataStore)DataStore.getDataStore(sourceUri);
                        dataStore.setLastTimestamp(0l);
                    } else if ("mail".equals(remoteDBType)) {
                        MailDataStore dataStore = (MailDataStore)DataStore.getDataStore(sourceUri);
                        dataStore.setLastTimestamp(0l);
                    }
                }
                catch (DataAccessException e) {
                    StaticDataHelper.log("EXCEPTION in SyncClient.getSynchError: " + e.toString());
                }
View Full Code Here


            return sdh.getLanguage("internal-server-error");

        } else if (error != null && error.indexOf(ERROR_REFRESH_REQUIRED) >= 0) {
 
            try {
                MailDataStore dataStore = (MailDataStore)DataStore.getDataStore(sourceUri);
                dataStore.setLastTimestamp(0l);
            } catch (DataAccessException e) {
                StaticDataHelper.log("Exception in SMSListener.getSynchError(...) --> " + e.toString());
            }
           
            return "Refresh-Required";        
View Full Code Here

TOP

Related Classes of com.funambol.syncclient.sps.MailDataStore

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.