Package com.facebook.api.schema

Examples of com.facebook.api.schema.MarketplaceGetCategoriesResponse


  public List<String> marketplace_getCategories() throws FacebookException, IOException {
    callMethod( FacebookMethod.MARKET_GET_CATEGORIES );
    if ( this.rawResponse == null ) {
      return null;
    }
    MarketplaceGetCategoriesResponse resp = (MarketplaceGetCategoriesResponse) getResponsePOJO();
    return resp.getMarketplaceCategory();
  }
View Full Code Here


  public List<String> marketplace_getCategories() throws FacebookException, IOException {
    callMethod( FacebookMethod.MARKET_GET_CATEGORIES );
    if ( this.rawResponse == null ) {
      return null;
    }
    MarketplaceGetCategoriesResponse resp = (MarketplaceGetCategoriesResponse) getResponsePOJO();
    return resp.getMarketplaceCategory();
  }
View Full Code Here

  public List<String> marketplace_getCategories() throws FacebookException, IOException {
    callMethod( FacebookMethod.MARKET_GET_CATEGORIES );
    if ( this.rawResponse == null ) {
      return null;
    }
    MarketplaceGetCategoriesResponse resp = (MarketplaceGetCategoriesResponse) getResponsePOJO();
    return resp.getMarketplaceCategory();
  }
View Full Code Here

TOP

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

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.