Home | History | Annotate | Download | only in adapter
      1 package com.android.exchange.adapter;
      2 
      3 import com.android.email.provider.EmailContent.Mailbox;
      4 import com.android.exchange.EasSyncService;
      5 
      6 import java.io.IOException;
      7 import java.io.InputStream;
      8 
      9 public class AccountSyncAdapter extends AbstractSyncAdapter {
     10 
     11     public AccountSyncAdapter(Mailbox mailbox, EasSyncService service) {
     12         super(mailbox, service);
     13      }
     14 
     15     @Override
     16     public void cleanup() {
     17     }
     18 
     19     @Override
     20     public String getCollectionName() {
     21         return null;
     22     }
     23 
     24     @Override
     25     public boolean parse(InputStream is) throws IOException {
     26         return false;
     27     }
     28 
     29     @Override
     30     public boolean sendLocalChanges(Serializer s) throws IOException {
     31         return false;
     32     }
     33 
     34     @Override
     35     public boolean isSyncable() {
     36         return true;
     37     }
     38 }
     39