Package org.hoteia.qalingo.core.web.mvc.viewbean

Source Code of org.hoteia.qalingo.core.web.mvc.viewbean.StoreLocatorFilterBean

/**
* 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;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;

public class StoreLocatorFilterBean extends AbstractViewBean {
  /**
   *
   */
  private static final long serialVersionUID = 5515180433042585447L;
 
  private final Logger logger = LoggerFactory.getLogger(getClass());
 
  private List<StoreLocatorCountryFilterBean> countries;

  public List<StoreLocatorCountryFilterBean> getCountries() {
    return countries;
  }

  public void addCountry(StoreLocatorCountryFilterBean country) {
    if(this.countries == null){
      this.countries = new ArrayList<StoreLocatorCountryFilterBean>();
    }
    this.countries.add(country);
 
 
  public String toJSON(){
    ObjectMapper mapper = new ObjectMapper();
    try {
      return mapper.writeValueAsString(countries);
    } catch (JsonProcessingException e) {
      logger.warn(e.getMessage(), e);
    }
    return null;
  }
}
TOP

Related Classes of org.hoteia.qalingo.core.web.mvc.viewbean.StoreLocatorFilterBean

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.