Package com.facebook.api.schema

Examples of com.facebook.api.schema.MarketplaceSearchResponse


  }

  public List<Listing> marketplace_search( MarketListingCategory category, MarketListingSubcategory subcategory, String searchTerm ) throws FacebookException,
      IOException {
    marketplace_search( category.getName(), subcategory.getName(), searchTerm );
    MarketplaceSearchResponse resp = (MarketplaceSearchResponse) getResponsePOJO();
    return resp.getListing();
  }
View Full Code Here


    callMethod( FacebookMethod.MARKET_SEARCH, params );
    if ( this.rawResponse == null ) {
      return null;
    }
    MarketplaceSearchResponse resp = (MarketplaceSearchResponse) getResponsePOJO();
    return resp.getListing();
  }
View Full Code Here

   *
   * @see com.facebook.api.IFacebookRestClient#marketplace_search(com.facebook.api.MarketListingCategory, com.facebook.api.MarketListingSubcategory, java.lang.String)
   */
  public List<Listing> marketplace_search( MarketListingCategory category, MarketListingSubcategory subcategory, String searchTerm ) throws FacebookException,
      IOException {
    MarketplaceSearchResponse resp = (MarketplaceSearchResponse) marketplace_search( category.getName(), subcategory.getName(), searchTerm );
    return resp.getListing();
  }
View Full Code Here

    callMethod( FacebookMethod.MARKET_SEARCH, params );
    if ( this.rawResponse == null ) {
      return null;
    }
    MarketplaceSearchResponse resp = (MarketplaceSearchResponse) getResponsePOJO();
    return resp.getListing();
  }
View Full Code Here

    callMethod( FacebookMethod.MARKET_SEARCH, params );
    if ( this.rawResponse == null ) {
      return null;
    }
    MarketplaceSearchResponse resp = (MarketplaceSearchResponse) getResponsePOJO();
    return resp.getListing();
  }
View Full Code Here

    return resp.getMarketplaceSubcategory();
  }

  public List<Listing> marketplace_search( MarketListingCategory category, MarketListingSubcategory subcategory, String searchTerm ) throws FacebookException,
      IOException {
    MarketplaceSearchResponse resp = (MarketplaceSearchResponse) marketplace_search( category.getName(), subcategory.getName(), searchTerm );
    return resp.getListing();
  }
View Full Code Here

TOP

Related Classes of com.facebook.api.schema.MarketplaceSearchResponse

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.