Uses of Interface
org.killbill.billing.util.entity.Pagination
-
Packages that use Pagination Package Description org.killbill.billing.account.api org.killbill.billing.entitlement.api org.killbill.billing.invoice.api org.killbill.billing.payment.api org.killbill.billing.util.api -
-
Uses of Pagination in org.killbill.billing.account.api
Methods in org.killbill.billing.account.api that return Pagination Modifier and Type Method Description Pagination<Account>AccountUserApi. getAccounts(Long offset, Long limit, TenantContext context)Pagination<Account>AccountUserApi. searchAccounts(String searchKey, Long offset, Long limit, TenantContext context)Find all accounts having their name, email, external_key or company_name matching the search key -
Uses of Pagination in org.killbill.billing.entitlement.api
Methods in org.killbill.billing.entitlement.api that return Pagination Modifier and Type Method Description Pagination<SubscriptionBundle>SubscriptionApi. getSubscriptionBundles(Long offset, Long limit, TenantContext context)Pagination<SubscriptionBundle>SubscriptionApi. getSubscriptionBundlesForAccountId(UUID accountId, Long offset, Long limit, TenantContext context)Pagination<SubscriptionBundle>SubscriptionApi. searchSubscriptionBundles(String searchKey, Long offset, Long limit, TenantContext context)Find allSubscriptionBundlehaving their id, account id or external key matching the search key -
Uses of Pagination in org.killbill.billing.invoice.api
Methods in org.killbill.billing.invoice.api that return Pagination Modifier and Type Method Description Pagination<Invoice>InvoiceUserApi. getInvoices(Long offset, Long limit, TenantContext context)Pagination<Invoice>InvoiceUserApi. getInvoicesByAccount(UUID accountId, Long offset, Long limit, TenantContext context)Pagination<Invoice>InvoiceUserApi. searchInvoices(String searchKey, Long offset, Long limit, TenantContext context)Find all invoices having their id, number, account id or currency matching the search key -
Uses of Pagination in org.killbill.billing.payment.api
Methods in org.killbill.billing.payment.api that return Pagination Modifier and Type Method Description Pagination<PaymentMethod>PaymentApi. getPaymentMethods(Long offset, Long limit, boolean withPluginInfo, Iterable<PluginProperty> properties, TenantContext context)Find all payment methods across all pluginsPagination<PaymentMethod>PaymentApi. getPaymentMethods(Long offset, Long limit, String pluginName, boolean withPluginInfo, Iterable<PluginProperty> properties, TenantContext context)Find all payment methods in a given pluginPagination<Payment>PaymentApi. getPayments(Long offset, Long limit, boolean withPluginInfo, boolean withAttempts, Iterable<PluginProperty> properties, TenantContext context)Find all payments across all pluginsPagination<Payment>PaymentApi. getPayments(Long offset, Long limit, String pluginName, boolean withPluginInfo, boolean withAttempts, Iterable<PluginProperty> properties, TenantContext context)Find all payments in a given pluginPagination<PaymentMethod>PaymentApi. searchPaymentMethods(String searchKey, Long offset, Long limit, boolean withPluginInfo, Iterable<PluginProperty> properties, TenantContext context)Find all payment methods matching the search key across all pluginsPagination<PaymentMethod>PaymentApi. searchPaymentMethods(String searchKey, Long offset, Long limit, String pluginName, boolean withPluginInfo, Iterable<PluginProperty> properties, TenantContext context)Find all payment methods matching the search key in a given pluginPagination<Payment>PaymentApi. searchPayments(String searchKey, Long offset, Long limit, boolean withPluginInfo, boolean withAttempts, Iterable<PluginProperty> properties, TenantContext context)Find all payments matching the search key across all pluginsPagination<Payment>PaymentApi. searchPayments(String searchKey, Long offset, Long limit, String pluginName, boolean withPluginInfo, boolean withAttempts, Iterable<PluginProperty> properties, TenantContext context)Find all payments matching the search key in a given plugin -
Uses of Pagination in org.killbill.billing.util.api
Methods in org.killbill.billing.util.api that return Pagination Modifier and Type Method Description Pagination<CustomField>CustomFieldUserApi. getCustomFields(Long offset, Long limit, TenantContext context)Pagination<Tag>TagUserApi. getTags(Long offset, Long limit, TenantContext context)Pagination<CustomField>CustomFieldUserApi. searchCustomFields(String searchKey, Long offset, Long limit, TenantContext context)Find all custom fields having their object type, field name or value matching the search keyPagination<CustomField>CustomFieldUserApi. searchCustomFields(String fieldName, String fieldValue, ObjectType objectType, Long offset, Long limit, TenantContext context)Pagination<CustomField>CustomFieldUserApi. searchCustomFields(String fieldName, ObjectType objectType, Long offset, Long limit, TenantContext context)Pagination<Tag>TagUserApi. searchTags(String searchKey, Long offset, Long limit, TenantContext context)Find all tags having their object type, associated tag definition name or description matching the search key
-