Class EnvironmentSEEATaxesClient
- java.lang.Object
-
- com.github.dannil.scbjavaclient.client.AbstractClient
-
- com.github.dannil.scbjavaclient.client.environment.seea.taxes.EnvironmentSEEATaxesClient
-
public class EnvironmentSEEATaxesClient extends AbstractClient
Client which handles environment System of Environmental-Economic Accounting (SEEA) taxes data fetching.
- Since:
- 0.4.0
-
-
Constructor Summary
Constructors Constructor Description EnvironmentSEEATaxesClient()Default constructor.EnvironmentSEEATaxesClient(Locale locale)Overloaded constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<ResponseModel>getEnvironmentalTaxesSNI2007()Fetch all environmental taxes SNI 2007 (NACE) data.List<ResponseModel>getEnvironmentalTaxesSNI2007(Collection<String> industrialClassifications, Collection<Integer> years)Fetch all environmental taxes SNI 2007 (NACE) data which match the input constraints.List<ResponseModel>getEnvironmentalTaxesSNI92()Fetch all environmental taxes SNI 92 (NACE) data.List<ResponseModel>getEnvironmentalTaxesSNI92(Collection<String> industrialClassifications, Collection<Integer> years)Fetch all environmental taxes SNI 92 (NACE) data which match the input constraints.URLEndpointgetUrl()Returns the URL endpoint which this client represents.-
Methods inherited from class com.github.dannil.scbjavaclient.client.AbstractClient
doGetRequest, doPostRequest, getCommunicationProtocol, getLocale, getLocalizationLocale, getResponseModels, getResponseModels, getRootUrl, setCommunicationProtocol, setLocale, setLocalizationLocale
-
-
-
-
Constructor Detail
-
EnvironmentSEEATaxesClient
public EnvironmentSEEATaxesClient()
Default constructor.
-
EnvironmentSEEATaxesClient
public EnvironmentSEEATaxesClient(Locale locale)
Overloaded constructor.
- Parameters:
locale- theLocalefor this client
-
-
Method Detail
-
getEnvironmentalTaxesSNI2007
public List<ResponseModel> getEnvironmentalTaxesSNI2007()
Fetch all environmental taxes SNI 2007 (NACE) data.
- Returns:
- the data wrapped in a list of
ResponseModelobjects - See Also:
getEnvironmentalTaxesSNI2007(Collection, Collection)
-
getEnvironmentalTaxesSNI2007
public List<ResponseModel> getEnvironmentalTaxesSNI2007(Collection<String> industrialClassifications, Collection<Integer> years)
Fetch all environmental taxes SNI 2007 (NACE) data which match the input constraints.
- Parameters:
industrialClassifications- the industrial classificationsyears- the years- Returns:
- the data wrapped in a list of
ResponseModelobjects
-
getEnvironmentalTaxesSNI92
public List<ResponseModel> getEnvironmentalTaxesSNI92()
Fetch all environmental taxes SNI 92 (NACE) data.
- Returns:
- the data wrapped in a list of
ResponseModelobjects - See Also:
getEnvironmentalTaxesSNI92(Collection, Collection)
-
getEnvironmentalTaxesSNI92
public List<ResponseModel> getEnvironmentalTaxesSNI92(Collection<String> industrialClassifications, Collection<Integer> years)
Fetch all environmental taxes SNI 92 (NACE) data which match the input constraints.
- Parameters:
industrialClassifications- the industrial classificationsyears- the years- Returns:
- the data wrapped in a list of
ResponseModelobjects
-
getUrl
public URLEndpoint getUrl()
Description copied from class:AbstractClientReturns the URL endpoint which this client represents.
- Specified by:
getUrlin classAbstractClient- Returns:
- the URL endpoint for this client
-
-