• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.android.exchange.adapter;
2 
3 import com.android.exchange.EasSyncService;
4 
5 import java.io.IOException;
6 import java.io.InputStream;
7 
8 public class AccountSyncAdapter extends AbstractSyncAdapter {
9 
AccountSyncAdapter(EasSyncService service)10     public AccountSyncAdapter(EasSyncService service) {
11         super(service);
12      }
13 
14     @Override
cleanup()15     public void cleanup() {
16     }
17 
18     @Override
wipe()19     public void wipe() {
20     }
21 
22     @Override
getCollectionName()23     public String getCollectionName() {
24         return null;
25     }
26 
27     @Override
parse(InputStream is)28     public boolean parse(InputStream is) throws IOException {
29         return false;
30     }
31 
32     @Override
sendLocalChanges(Serializer s)33     public boolean sendLocalChanges(Serializer s) throws IOException {
34         return false;
35     }
36 
37     @Override
isSyncable()38     public boolean isSyncable() {
39         return true;
40     }
41 
42     @Override
sendSyncOptions(Double protocolVersion, Serializer s, boolean initialSync)43     public void sendSyncOptions(Double protocolVersion, Serializer s, boolean initialSync)
44             throws IOException {
45     }
46 }
47