Package com.facebook.api.schema

Examples of com.facebook.api.schema.MarketplaceGetSubCategoriesResponse


    return resp.getListing();
  }

  public List<String> marketplace_getSubCategories() throws FacebookException, IOException {
    marketplace_getSubCategories( null );
    MarketplaceGetSubCategoriesResponse resp = (MarketplaceGetSubCategoriesResponse) getResponsePOJO();
    return resp.getMarketplaceSubcategory();
  }
View Full Code Here


  public List<String> marketplace_getSubCategories() throws FacebookException, IOException {
    callMethod( FacebookMethod.MARKET_GET_SUBCATEGORIES );
    if ( this.rawResponse == null ) {
      return null;
    }
    MarketplaceGetSubCategoriesResponse resp = (MarketplaceGetSubCategoriesResponse) getResponsePOJO();
    return resp.getMarketplaceSubcategory();
  }
View Full Code Here

   * (non-Javadoc)
   *
   * @see com.facebook.api.IFacebookRestClient#marketplace_getSubCategories()
   */
  public List<String> marketplace_getSubCategories() throws FacebookException, IOException {
    MarketplaceGetSubCategoriesResponse resp = (MarketplaceGetSubCategoriesResponse) marketplace_getSubCategories( null );
    return resp.getMarketplaceSubcategory();
  }
View Full Code Here

  public List<String> marketplace_getSubCategories() throws FacebookException, IOException {
    callMethod( FacebookMethod.MARKET_GET_SUBCATEGORIES );
    if ( this.rawResponse == null ) {
      return null;
    }
    MarketplaceGetSubCategoriesResponse resp = (MarketplaceGetSubCategoriesResponse) getResponsePOJO();
    return resp.getMarketplaceSubcategory();
  }
View Full Code Here

  public List<String> marketplace_getSubCategories() throws FacebookException, IOException {
    callMethod( FacebookMethod.MARKET_GET_SUBCATEGORIES );
    if ( this.rawResponse == null ) {
      return null;
    }
    MarketplaceGetSubCategoriesResponse resp = (MarketplaceGetSubCategoriesResponse) getResponsePOJO();
    return resp.getMarketplaceSubcategory();
  }
View Full Code Here

    MarketplaceGetListingsResponse resp = (MarketplaceGetListingsResponse) marketplace_getListings( listingIds, uids );
    return resp.getListing();
  }

  public List<String> marketplace_getSubCategories() throws FacebookException, IOException {
    MarketplaceGetSubCategoriesResponse resp = (MarketplaceGetSubCategoriesResponse) marketplace_getSubCategories( null );
    return resp.getMarketplaceSubcategory();
  }
View Full Code Here

TOP

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

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.