|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface CountryService
CountryService interface.
Method Summary | |
---|---|
List<Country> |
findAllCountries()
Returns all Countries |
List<Country> |
findAllCountriesNotRestricted()
Returns all Countries that are not restricted. |
Country |
getCountry(String code)
Lookup a country object based on the given country code. |
Country |
getCountryByAlternateCode(String alternateCode)
Get a country object based on an alternate country code |
Country |
getDefaultCountry()
Returns the system default country. |
Method Detail |
---|
@Cacheable(value="http://rice.kuali.org/location/v2_0/CountryType", key="\'code=\' + #p0") Country getCountry(String code) throws RiceIllegalArgumentException
code
- the given country code
RiceIllegalArgumentException
@Cacheable(value="http://rice.kuali.org/location/v2_0/CountryType", key="\'alternateCode=\' + #p0") Country getCountryByAlternateCode(String alternateCode) throws RiceIllegalStateException, RiceIllegalArgumentException
alternateCode
- the given alternate country code
IllegalStateException
- if multiple Countries exist with the same passed in alternateCode
IllegalArgumentException
- if alternateCode is null or is a whitespace only string.
RiceIllegalStateException
RiceIllegalArgumentException
@Cacheable(value="http://rice.kuali.org/location/v2_0/CountryType", key="\'allRestricted\'") List<Country> findAllCountriesNotRestricted()
@Cacheable(value="http://rice.kuali.org/location/v2_0/CountryType", key="\'all\'") List<Country> findAllCountries()
@Cacheable(value="http://rice.kuali.org/location/v2_0/CountryType", key="\'default\'") Country getDefaultCountry()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |