Package com.huangzhimin.contacts.google

Examples of com.huangzhimin.contacts.google.GoogleImporter


    public void tearDown() throws Exception {
    }

    @Test
    public void gmail() {
    ContactsImporter importer = new GoogleImporter(props.getProperty("gmail.username"), props.getProperty("gmail.password"));
    try {
      List<Contact> contacts = importer.getContacts();
      assertTrue("gmail contacts are empty", contacts.size() > 0);
    } catch (ContactsException e) {
      fail("gmail contacts get failed. " + e.getMessage());
    }
    }
View Full Code Here


   *            密码
   * @return Gmail Importer实例
   */
  public static ContactsImporter getGmailContacts(String email,
      String password) {
    return new GoogleImporter(email, password);
  }
View Full Code Here

TOP

Related Classes of com.huangzhimin.contacts.google.GoogleImporter

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.