public static void parseResponse(final String location, final String responseText) {
    CoinmasterData data = VendingMachineRequest.VENDING_MACHINE;
    String action = GenericRequest.getAction(location);
    if (action == null) {
      if (location.indexOf("place=vendo") != -1) {
        // Parse current coin balances
        CoinMasterRequest.parseBalance(data, responseText);
      }

      return;
    }

    CoinMasterRequest.parseResponse(data, location, responseText);
  }