Interface CmsAspspPiisFundsExportService
-
@NotNull public interface CmsAspspPiisFundsExportService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<de.adorsys.psd2.consent.api.piis.v1.CmsPiisConsent>exportConsentsByAccountId(@NotNull String aspspAccountId, @Nullable LocalDate createDateFrom, @Nullable LocalDate createDateTo, @Nullable String instanceId, Integer pageIndex, Integer itemsPerPage)Returns list of consents by given criteria.Collection<de.adorsys.psd2.consent.api.piis.v1.CmsPiisConsent>exportConsentsByPsu(de.adorsys.psd2.xs2a.core.psu.PsuIdData psuIdData, @Nullable LocalDate createDateFrom, @Nullable LocalDate createDateTo, @Nullable String instanceId, Integer pageIndex, Integer itemsPerPage)Returns list of consents by given criteria.Collection<de.adorsys.psd2.consent.api.piis.v1.CmsPiisConsent>exportConsentsByTpp(String tppAuthorisationNumber, @Nullable LocalDate createDateFrom, @Nullable LocalDate createDateTo, @Nullable de.adorsys.psd2.xs2a.core.psu.PsuIdData psuIdData, @Nullable String instanceId, Integer pageIndex, Integer itemsPerPage)Returns list of consents by given criteria.
-
-
-
Method Detail
-
exportConsentsByTpp
Collection<de.adorsys.psd2.consent.api.piis.v1.CmsPiisConsent> exportConsentsByTpp(String tppAuthorisationNumber, @Nullable @Nullable LocalDate createDateFrom, @Nullable @Nullable LocalDate createDateTo, @Nullable @Nullable de.adorsys.psd2.xs2a.core.psu.PsuIdData psuIdData, @Nullable @Nullable String instanceId, Integer pageIndex, Integer itemsPerPage)
Returns list of consents by given criteria.- Parameters:
tppAuthorisationNumber- Mandatory TPP IDcreateDateFrom- Optional starting creation date criteriacreateDateTo- Optional ending creation date criteriapsuIdData- Optional Psu information criteriainstanceId- Optional id of particular service instance. If it's not provided, default value will be used instead.pageIndex- index of current pageitemsPerPage- quantity of consents on one page- Returns:
- Collection of consents for TPP by given criteria. By inconsistent criteria an empty list will be returned
- Throws:
TooManyResultsException- If CMS is not able to provide result due to overflow, developer shall limit his/her request, making pagination by dates.
-
exportConsentsByPsu
Collection<de.adorsys.psd2.consent.api.piis.v1.CmsPiisConsent> exportConsentsByPsu(de.adorsys.psd2.xs2a.core.psu.PsuIdData psuIdData, @Nullable @Nullable LocalDate createDateFrom, @Nullable @Nullable LocalDate createDateTo, @Nullable @Nullable String instanceId, Integer pageIndex, Integer itemsPerPage)
Returns list of consents by given criteria.- Parameters:
psuIdData- Mandatory Psu information criteriacreateDateFrom- Optional starting creation date criteriacreateDateTo- Optional ending creation date criteriainstanceId- Optional id of particular service instance. If it's not provided, default value will be used instead.pageIndex- index of current pageitemsPerPage- quantity of consents on one page- Returns:
- Collection of consents for PSU by given criteria. By inconsistent criteria an empty list will be returned
- Throws:
TooManyResultsException- If CMS is not able to provide result due to overflow, developer shall limit his/her request, making pagination by dates.
-
exportConsentsByAccountId
Collection<de.adorsys.psd2.consent.api.piis.v1.CmsPiisConsent> exportConsentsByAccountId(@NotNull @NotNull String aspspAccountId, @Nullable @Nullable LocalDate createDateFrom, @Nullable @Nullable LocalDate createDateTo, @Nullable @Nullable String instanceId, Integer pageIndex, Integer itemsPerPage)
Returns list of consents by given criteria.- Parameters:
aspspAccountId- Bank specific account identifiercreateDateFrom- Optional starting creation date criteriacreateDateTo- Optional ending creation date criteriainstanceId- Optional id of particular service instance. If it's not provided, default value will be used instead.pageIndex- index of current pageitemsPerPage- quantity of consents on one page- Returns:
- Collection of consents by given criteria. By inconsistent criteria an empty list will be returned
- Throws:
TooManyResultsException- If CMS is not able to provide result due to overflow, developer shall limit his/her request, making pagination by dates.
-
-