public interface CountryService
| Modifier and Type | Method and Description |
|---|---|
<any> |
getCompactChildren(java.lang.String uuid,
java.lang.String[] languages,
java.lang.String[] includes,
java.lang.String[] except,
java.lang.Long limit,
java.lang.Long offset)
Get Country children in compact form.
|
<any> |
getCompactCities(java.lang.String uuid,
java.lang.String[] languages,
java.lang.String[] includes,
java.lang.String[] except,
java.lang.Long limit,
java.lang.Long offset)
Get list of compact City objects which belong to the Country with requested UUID.
|
<any> |
getCompactCountries(java.lang.String[] languages,
java.lang.String[] includes,
java.lang.String[] except,
java.lang.Long limit,
java.lang.Long offset)
Get list of compact Country objects which have content on requested languages.
|
<any> |
getCountry(java.lang.String uuid,
java.lang.String[] languages,
java.lang.String[] includes,
java.lang.String[] except)
Get full Country object by UUID.
|
<any> |
getFullChildren(java.lang.String uuid,
java.lang.String[] languages,
java.lang.String[] includes,
java.lang.String[] except,
java.lang.Long limit,
java.lang.Long offset,
java.lang.Boolean children_count)
Get Country children in full form.
|
<any> |
getFullCities(java.lang.String uuid,
java.lang.String[] languages,
java.lang.String[] includes,
java.lang.String[] except,
java.lang.Long limit,
java.lang.Long offset)
Get list of full City objects which belong to the Country with requested UUID.
|
<any> |
getFullCountries(java.lang.String[] languages,
java.lang.String[] includes,
java.lang.String[] except,
java.lang.Long limit,
java.lang.Long offset)
Get list of full Country objects which have content on requested languages.
|
<any> getCompactCountries(java.lang.String[] languages,
java.lang.String[] includes,
java.lang.String[] except,
java.lang.Long limit,
java.lang.Long offset)
languages - Array of languages which should have country.includes - Array of sections which should be included to country object.except - Array of sections which should NOT be included to country object.limit - Limit for pagination, defaults to 20.offset - Offset for pagination, defaults to 0.getFullCountries(String[], String[], String[], Long, Long)<any> getFullCountries(java.lang.String[] languages,
java.lang.String[] includes,
java.lang.String[] except,
java.lang.Long limit,
java.lang.Long offset)
<any> getCountry(java.lang.String uuid,
java.lang.String[] languages,
java.lang.String[] includes,
java.lang.String[] except)
uuid - UUID of the Country.languages - Array of languages which should have country.includes - Array of sections which should be included to country object.except - Array of sections which should NOT be included to country object.<any> getCompactChildren(java.lang.String uuid,
java.lang.String[] languages,
java.lang.String[] includes,
java.lang.String[] except,
java.lang.Long limit,
java.lang.Long offset)
uuid - UUID of the Country.languages - Array of requested languages, i.e. Country's children should have one of
the requested languages.includes - Array of sections which should be included into response.except - Array of sections which should NOT be included into response.limit - Limit for pagination, defaults to 20.offset - Offset for pagination, defaults to 0.getFullChildren(String, String[], String[], String[], Long, Long, Boolean)<any> getFullChildren(java.lang.String uuid,
java.lang.String[] languages,
java.lang.String[] includes,
java.lang.String[] except,
java.lang.Long limit,
java.lang.Long offset,
java.lang.Boolean children_count)
<any> getCompactCities(java.lang.String uuid,
java.lang.String[] languages,
java.lang.String[] includes,
java.lang.String[] except,
java.lang.Long limit,
java.lang.Long offset)
uuid - UUID of the Country.languages - Array of requested languages, each Country's City should have content at
one of the requested language.includes - Array of sections which should be included to city object.except - Array of sections which should NOT be included to city object.limit - Limit for pagination, defaults to 20.offset - Offset for pagination, defaults to 0.getFullCities(String, String[], String[], String[], Long, Long)<any> getFullCities(java.lang.String uuid,
java.lang.String[] languages,
java.lang.String[] includes,
java.lang.String[] except,
java.lang.Long limit,
java.lang.Long offset)