Package com.google.code.facebookapi.schema

Examples of com.google.code.facebookapi.schema.DataGetUserPreferencesResponse


  @Test
  public void testDataPreferencesJAXB() throws Exception {
    IFacebookRestClient<Object> client = FacebookSessionTestUtils.getValidClient( FacebookJaxbRestClient.class );
    Object pinkBlack = testCycle( client );
    DataGetUserPreferencesResponse response = (DataGetUserPreferencesResponse) pinkBlack;
    List<Preference> preferences = response.getPreference();
    boolean found161 = false;
    boolean found162 = false;
    for ( Preference pref : preferences ) {
      if ( pref.getPrefId() == 161 ) {
        found161 = true;
View Full Code Here

TOP

Related Classes of com.google.code.facebookapi.schema.DataGetUserPreferencesResponse

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.