Package | Description |
---|---|
org.salespointframework.accountancy |
Accountancy subsystem.
|
org.salespointframework.catalog | |
org.salespointframework.core |
Core Salespoint types.
|
org.salespointframework.order |
The order subsystem.
|
org.salespointframework.support |
Infrastrcuture support classes.
|
org.salespointframework.time |
The time subsystem abstracting the concept of business time.
|
org.salespointframework.useraccount |
User account management.
|
Modifier and Type | Method and Description |
---|---|
Streamable<AccountancyEntry> |
Accountancy.find(Interval interval)
Returns all
AccountancyEntry s that were created in the given Interval . |
Streamable<AccountancyEntry> |
PersistentAccountancy.find(Interval interval) |
Streamable<AccountancyEntry> |
Accountancy.findAll()
Returns all
AccountancyEntry s of the specified type clazz and all sub-types, previously added to
the accountancy. |
Streamable<AccountancyEntry> |
PersistentAccountancy.findAll() |
Modifier and Type | Method and Description |
---|---|
Map<Interval,Streamable<AccountancyEntry>> |
Accountancy.find(Interval interval,
TemporalAmount duration)
|
Map<Interval,Streamable<AccountancyEntry>> |
PersistentAccountancy.find(Interval interval,
TemporalAmount duration) |
Modifier and Type | Method and Description |
---|---|
Streamable<String> |
Product.getCategories()
Returns the categories the
Product is assigned to. |
Modifier and Type | Class and Description |
---|---|
(package private) class |
DefaultStreamable<T> |
Modifier and Type | Method and Description |
---|---|
static <T> Streamable<T> |
Streamable.empty()
Returns an empty
Streamable . |
static <T> Streamable<T> |
Streamable.of(Iterable<T> iterable)
Returns a
Streamable for the given Iterable . |
static <T> Streamable<T> |
Streamable.ofLazy(Supplier<Stream<T>> supplier)
|
Modifier and Type | Method and Description |
---|---|
static <T> DefaultStreamable<T> |
DefaultStreamable.of(Streamable<T> delegate) |
Modifier and Type | Class and Description |
---|---|
class |
Cart
Abstraction of a shopping cart.
|
class |
OrderCompletionReport |
Modifier and Type | Method and Description |
---|---|
Streamable<T> |
OrderManager.findBy(Interval interval)
|
Streamable<T> |
PersistentOrderManager.findBy(Interval interval) |
Streamable<T> |
OrderManager.findBy(OrderStatus orderStatus)
|
Streamable<T> |
PersistentOrderManager.findBy(OrderStatus orderStatus) |
Streamable<T> |
OrderManager.findBy(UserAccount userAccount)
Returns all
Order s of the given UserAccount . |
Streamable<T> |
PersistentOrderManager.findBy(UserAccount userAccount) |
Streamable<T> |
OrderManager.findBy(UserAccount userAccount,
Interval interval)
Returns all
Order s from the given UserAccount in between the dates from and to ,
including from and to. |
Streamable<T> |
PersistentOrderManager.findBy(UserAccount userAccount,
Interval interval) |
Streamable<ChargeLine> |
Order.getChargeLines() |
Streamable<OrderLine> |
Order.getOrderLines() |
Modifier and Type | Method and Description |
---|---|
(package private) static OrderCompletionReport |
OrderCompletionReport.forCompletions(Order order,
Streamable<OrderCompletionReport.OrderLineCompletion> completions)
Creates a new
OrderCompletionReport for the given Order and OrderCompletionReport.OrderLineCompletion s. |
Modifier and Type | Method and Description |
---|---|
Streamable<org.springframework.mail.SimpleMailMessage> |
RecordingMailSender.getSentMessages()
Returns all
SimpleMailMessage s that have been recorded so far. |
Modifier and Type | Class and Description |
---|---|
class |
Intervals
Value object to represent a list o
Interval s. |
Modifier and Type | Method and Description |
---|---|
Streamable<UserAccount> |
UserAccountManager.findAll()
Finds all
UserAccount s. |
Streamable<UserAccount> |
PersistentUserAccountManager.findAll() |
Streamable<UserAccount> |
UserAccountManager.findDisabled()
Finds only disabled
UserAccount s. |
Streamable<UserAccount> |
PersistentUserAccountManager.findDisabled() |
Streamable<UserAccount> |
UserAccountManager.findEnabled()
Finds only enabled
UserAccount s. |
Streamable<UserAccount> |
PersistentUserAccountManager.findEnabled() |
Streamable<Role> |
UserAccount.getRoles() |
Copyright © 2018 Pivotal Software, Inc.. All rights reserved.