Snippets

Purvesh Khona Get Footers

Created by Purvesh Khona
/**
 * 
 */
package com.braango.virtualdealer.footers;

import java.util.ArrayList;
import java.util.List;
import java.util.Map;

import com.braango.client.ApiCallback;
import com.braango.client.ApiClient;
import com.braango.client.ApiException;
import com.braango.client.braangoapi.FootersApi;
import com.braango.client.braangoapi.FootersApi;
import com.braango.client.braangomodel.FootersInput;
import com.braango.client.braangomodel.FootersInputBody;
import com.braango.client.braangomodel.FootersInputBody;
import com.braango.client.braangomodel.FootersOutput;
import com.braango.client.braangomodel.FootersOutputBodyData;
import com.braango.client.braangomodel.RequestHeader;
import com.braango.client.braangomodel.FootersOutput;

/**
 * @author braango
 * 
 *    Sample code showing how to get Footers for a personnel
 *
 */
public class GetFooters {

	static String basePath = "https://testapi2.braango.com/v2/braango";

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		// TODO Auto-generated method stub

		ApiClient braangoApiClient = new ApiClient();
		// TEST auth token. Please contact
		// sales@braango.com to have one
		// created for you
		String authToken = "ISNWF0P30WM0CMK";
		braangoApiClient.setBasePath(basePath);

		// Set the auth_token for api client to
		// interact with Braango system
		braangoApiClient.setApiKey(authToken);

		// Api key is authorization to to access
		// resources within braango system
		//
		// This key is different than auth_token
		// that is used to validate the master account

		String apiKey = "ISNfTMNOumV3xYNDd2g";

		// Create personnel api. Personnel is hosted by subDealer
		FootersApi footerApi = new FootersApi(braangoApiClient);
		

		ApiCallback<FootersOutput> callBack = new ApiCallback<FootersOutput>() {

			@Override
			public void onUploadProgress(long bytesWritten, 
					long contentLength,
					boolean done) {

				System.out
						.println("Place holder for tracking"
								+ " request progress");

			}

			@Override
			public void onSuccess(FootersOutput result, int statusCode,
					Map<String, List<String>> responseHeaders) {

				FootersOutputBodyData footersList = result.getBody()
						.getData();
				
				List<String> dealerFooters = footersList.getDealerFooters();
				List<String> clientFooters = footersList.getClientFooters();
				List<String> supervisorFooters =
						                     footersList.getSupervisorFooters();
				
				System.out.println("Dealer Footers =  " + dealerFooters);
				System.out.println("Client Footers =  " + clientFooters);
				System.out.println("Supervisor Footers =  " + supervisorFooters);


			}

			@Override
			public void onFailure(ApiException e, int statusCode,
					Map<String, List<String>> responseHeaders) {
				System.out.println("Error is " + statusCode + " "
						+ e.getResponseBody());

			}

			@Override
			public void onDownloadProgress(long bytesRead, long contentLength,
					boolean done) {

			}
		};

	

		try {
			String subDealerId = "subdealers1002";
			String salesPersonId = "0550c168-6117-45d5-a95f-e66593e6336b";
			String accountType = "partner";
			String footerType = "client" ; // "dealer", "client", "supervisor"
			footerApi.getFootersAsync(subDealerId, salesPersonId,footerType, apiKey,accountType, callBack);
		} catch (ApiException e1) {
			e1.printStackTrace();
		}
	}

}

Comments (0)

HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.