View Javadoc

1   package org.appfuse.webapp.services;
2   
3   import java.util.Map;
4   
5   /**
6    * Provide access to a list of countries based on your locale
7    *
8    * @author Serge Eby
9    */
10  public interface CountryService {
11      Map<String, String> getAvailableCountries();
12  }