Channel c = new Channel();
c.setId(jsonChannel.getInt("channelId"));
c.setDescription(jsonChannel.getString("channelDesc"));
Product p = new Product();
p.setId(jsonProduct.getInt("prodId"));
p.setName(jsonProduct.getString("prodName"));
Customer cu = new Customer();
cu.setCity(jsonCustomer.getString("custCity"));
cu.setFirstName(jsonCustomer.getString("custFirstName"));
cu.setGender(jsonCustomer.getString("custGender"));