Skip to content

Commit

Permalink
#323 - Polish Javadoc after move back to version 7.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
odrotbohm committed Oct 2, 2020
1 parent 7eabc48 commit ca08481
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Expand Up @@ -24,7 +24,7 @@
* override {@link #findAll()} to return a {@link Streamable} out of the box.
*
* @author Oliver Drotbohm
* @since 8.0
* @since 7.3
*/
@NoRepositoryBean
public interface SalespointRepository<T, ID extends SalespointIdentifier> extends CrudRepository<T, ID> {
Expand Down
Expand Up @@ -32,7 +32,8 @@
* warehouse. That's simple and allows to look up the {@link UniqueInventoryItem} by {@link ProductIdentifier}. I.e. the
* {@link Quantity} contained in that {@link UniqueInventoryItem} is equivalent to the overall quantity in the system.
* This is the simpler model in general and should be preferred. {@link Product}s held in {@link UniqueInventoryItem}s
* are suspect to automatic inventory updates on order completion. See {@link InventoryOrderEventListener} for details.
* are suspect to automatic inventory updates on order completion. See
* {@link org.salespointframework.inventory.InventoryListeners.InventoryOrderEventListener} for details.
* <p>
* If you absolutely need to model {@link Product}s managed in multiple warehouses, use {@link MultiInventoryItem}
* alongside {@link MultiInventory}. {@link MultiInventory#findByProductIdentifier(ProductIdentifier)} rather returns an
Expand All @@ -53,7 +54,7 @@ public interface Inventory<T extends InventoryItem<?>> {
*
* @return
* @see SalespointRepository#findAll()
* @since 8.0
* @since 7.3
*/
@Query("select i from #{#entityName} i")
Streamable<InventoryItem<?>> streamAll();
Expand Down

0 comments on commit ca08481

Please sign in to comment.