Package com.funambol.syncclient.sps

Examples of com.funambol.syncclient.sps.ContactDataStore


               
            } else if (error.indexOf(ERROR_REFRESH_REQUIRED) >= 0) {//508  
                try {//ClassCastException with calendar events & contacts data
                   
                    if ("address book".equals(remoteDBType)) {
                        ContactDataStore dataStore = (ContactDataStore)DataStore.getDataStore(sourceUri);
                        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


     *
     * @param void
     *
     */
    public Sync4jContactListener() {
        this.contactDataStore = new ContactDataStore();
    }
View Full Code Here

TOP

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

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.