/* * SIP Communicator, the OpenSource Java VoIP and Instant Messaging client. * * Distributable under LGPL license. * See terms of license at gnu.org. */ package net.java.sip.communicator.plugin.msoutlook; import java.util.*; import net.java.sip.communicator.service.contactsource.*; /** * Implements ContactQuery for the Address Book of Microsoft Outlook. * * @author Lyubomir Marinov */ public class MsOutlookAddressBookContactQuery extends AbstractContactQuery { /** * Initializes a new MsOutlookAddressBookContactQuery instance to * be performed by a specific * MsOutlookAddressBookContactSourceService. * * @param msoabcss the MsOutlookAddressBookContactSourceService * which is to perform the new ContactQuery */ public MsOutlookAddressBookContactQuery( MsOutlookAddressBookContactSourceService msoabcss) { super(msoabcss); } /** * Cancels this ContactQuery. * * @see ContactQuery#cancel() */ public void cancel() { // TODO Auto-generated method stub } /** * Gets the List of SourceContacts which match this * ContactQuery. * * @return the List of SourceContacts which match this * ContactQuery * @see ContactQuery#getQueryResults() */ public List getQueryResults() { // TODO Auto-generated method stub return null; } /** * Gets the status of this ContactQuery which can be one of the * QUERY_XXX constants defined by ContactQuery. * * @return the status of this ContactQuery which can be one of the * QUERY_XXX constants defined by ContactQuery * @see ContactQuery#getStatus() */ public int getStatus() { // TODO Auto-generated method stub return 0; } }