Class FinancialMarketsShareholdersSwedishMarketplaceClient
- java.lang.Object
-
- com.github.dannil.scbjavaclient.client.AbstractClient
-
- com.github.dannil.scbjavaclient.client.financialmarkets.shareholders.swedishmarketplace.FinancialMarketsShareholdersSwedishMarketplaceClient
-
public class FinancialMarketsShareholdersSwedishMarketplaceClient extends AbstractClient
Client which handles financial markets shareholders Swedish marketplace data fetching.
- Since:
- 3.0.0
-
-
Constructor Summary
Constructors Constructor Description FinancialMarketsShareholdersSwedishMarketplaceClient()Default constructor.FinancialMarketsShareholdersSwedishMarketplaceClient(Locale locale)Overloaded constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<ResponseModel>getOwnershipOfSharesByMarketplace()Fetch all ownership of shares by marketplace data.List<ResponseModel>getOwnershipOfSharesByMarketplace(Collection<String> sectors, Collection<String> marketplaces, Collection<String> twoTimesPerYears)Fetch all ownership of shares by marketplace data which match the input constraints.List<ResponseModel>getOwnershipOfSharesBySeries()Fetch all ownership of shares by series data.List<ResponseModel>getOwnershipOfSharesBySeries(Collection<String> sectors, Collection<String> classesOfShares, Collection<String> twoTimesPerYears)Fetch all ownership of shares by series 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
-
FinancialMarketsShareholdersSwedishMarketplaceClient
public FinancialMarketsShareholdersSwedishMarketplaceClient()
Default constructor.
-
FinancialMarketsShareholdersSwedishMarketplaceClient
public FinancialMarketsShareholdersSwedishMarketplaceClient(Locale locale)
Overloaded constructor.
- Parameters:
locale- theLocalefor this client
-
-
Method Detail
-
getOwnershipOfSharesByMarketplace
public List<ResponseModel> getOwnershipOfSharesByMarketplace()
Fetch all ownership of shares by marketplace data.
- Returns:
- the data wrapped in a list of
ResponseModelobjects - See Also:
getOwnershipOfSharesByMarketplace(Collection, Collection, Collection)
-
getOwnershipOfSharesByMarketplace
public List<ResponseModel> getOwnershipOfSharesByMarketplace(Collection<String> sectors, Collection<String> marketplaces, Collection<String> twoTimesPerYears)
Fetch all ownership of shares by marketplace data which match the input constraints.
- Parameters:
sectors- the sectors to fetch data formarketplaces- the marketplaces to fetch data fortwoTimesPerYears- the two times per years to fetch data for- Returns:
- the data wrapped in a list of
ResponseModelobjects
-
getOwnershipOfSharesBySeries
public List<ResponseModel> getOwnershipOfSharesBySeries()
Fetch all ownership of shares by series data.
- Returns:
- the data wrapped in a list of
ResponseModelobjects - See Also:
getOwnershipOfSharesBySeries(Collection, Collection, Collection)
-
getOwnershipOfSharesBySeries
public List<ResponseModel> getOwnershipOfSharesBySeries(Collection<String> sectors, Collection<String> classesOfShares, Collection<String> twoTimesPerYears)
Fetch all ownership of shares by series data which match the input constraints.
- Parameters:
sectors- the sectors to fetch data forclassesOfShares- the classes of shares to fetch data fortwoTimesPerYears- the two times per years to fetch data for- 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
-
-