//Get an AuthToken.
GetAuthenticationToken getAuthenticationToken = new GetAuthenticationToken();
getAuthenticationToken.run();
//Find the random business by passing it's name and the AuthToken.
FindBusinessByName findBusinessByName = new FindBusinessByName(getAuthenticationToken.getAuthenticationToken(),
businessName);
findBusinessByName.run();
//Print out the business that was found and the services published under it.
for(BusinessInfo bi : findBusinessByName.getBusinessInfos().getBusinessInfo())
{
//Print out business name and key.
System.out.println(bi.getName().get(0).getValue() + " - " + bi.getBusinessKey());
for (ServiceInfo si : bi.getServiceInfos().getServiceInfo())
{