public class StateServiceImpl extends Object implements StateService
| Constructor and Description |
|---|
StateServiceImpl() |
| Modifier and Type | Method and Description |
|---|---|
List<State> |
findAllStatesInCountry(String countryCode)
Finds all the
States for postal country code. |
List<State> |
findAllStatesInCountryByAltCode(String alternateCode)
Finds all the
States for alternate postal country code. |
StateQueryResults |
findStates(QueryByCriteria queryByCriteria)
This method find States based on a query criteria.
|
CountryService |
getCountryService() |
State |
getState(String countryCode,
String code)
Gets a
State from a postal country code and postal state code. |
void |
setBusinessObjectService(BusinessObjectService businessObjectService) |
void |
setCountryService(CountryService countryService) |
void |
setCriteriaLookupService(CriteriaLookupService criteriaLookupService)
Sets the criteriaLookupService attribute value.
|
public StateServiceImpl()
public State getState(String countryCode, String code)
StateServiceState from a postal country code and postal state code.
This method will return null if the state does not exist.
This method will return active or inactive states.
getState in interface StateServicecountryCode - country code. cannot be blank.code - state code. cannot be blank.State or nullpublic List<State> findAllStatesInCountry(String countryCode)
StateServiceStates for postal country code.
This method will always return an immutable Collection even when no values exist.
This method will only return active states.
findAllStatesInCountry in interface StateServicecountryCode - state code. cannot be blank.public List<State> findAllStatesInCountryByAltCode(String alternateCode)
StateServiceStates for alternate postal country code.
This method will always return an immutable Collection even when no values exist.
This method will only return active states.
findAllStatesInCountryByAltCode in interface StateServicealternateCode - cannot be blank.public StateQueryResults findStates(QueryByCriteria queryByCriteria) throws RiceIllegalArgumentException
StateServicefindStates in interface StateServicequeryByCriteria - the criteria. Cannot be null.RiceIllegalArgumentExceptionpublic CountryService getCountryService()
public void setCountryService(CountryService countryService)
public void setBusinessObjectService(BusinessObjectService businessObjectService)
public void setCriteriaLookupService(CriteriaLookupService criteriaLookupService)
criteriaLookupService - The criteriaLookupService to set.Copyright © 2005–2016 The Kuali Foundation. All rights reserved.