/** * Most of the code in the Qalingo project is copyrighted Hoteia and licensed * under the Apache License Version 2.0 (release version 0.8.0) * http://www.apache.org/licenses/LICENSE-2.0 * * Copyright (c) Hoteia, 2012-2014 * http://www.hoteia.com - http://twitter.com/hoteia - contact@hoteia.com * */ package org.hoteia.qalingo.core.web.mvc.viewbean; import java.util.ArrayList; import java.util.List; public class MarketPlaceViewBean extends AbstractViewBean { /** * Generated UID */ private static final long serialVersionUID = 3384673120025052204L; // ENTITY protected String name; protected List<MarketViewBean> markets = new ArrayList<MarketViewBean>(); // MENU protected String img; protected String changeContextUrl; protected String homeUrl; public String getName() { return name; } public void setName(String name) { this.name = name; } public List<MarketViewBean> getMarkets() { return markets; } public void setMarkets(List<MarketViewBean> markets) { this.markets = markets; } public String getImg() { return img; } public void setImg(String img) { this.img = img; } public String getChangeContextUrl() { return changeContextUrl; } public void setChangeContextUrl(String changeContextUrl) { this.changeContextUrl = changeContextUrl; } public String getHomeUrl() { return homeUrl; } public void setHomeUrl(String homeUrl) { this.homeUrl = homeUrl; } }