Package | Description |
---|---|
pb138.dal.repository | |
pb138.service.facades | |
pb138.service.services |
Modifier and Type | Method and Description |
---|---|
Shipment |
ShipmentRepository.getById(long id)
Retrieves entity by id
|
Modifier and Type | Method and Description |
---|---|
Iterable<Shipment> |
ShipmentRepository.find(ShipmentFilter filter)
Filters according to criteria specified by filter
|
Modifier and Type | Method and Description |
---|---|
void |
ShipmentRepository.create(Shipment shipment)
Creates entity in database
|
void |
ShipmentRepository.delete(Shipment shipment)
Deletes the entity from database
|
void |
ShipmentRepository.update(Shipment shipment)
Updates entity in database
|
Modifier and Type | Method and Description |
---|---|
Shipment |
ShipmentFacadeImpl.addShipment(long ean,
Date date,
int arrived) |
Shipment |
ShipmentFacade.addShipment(long ean,
Date date,
int arrived)
Creates a new shipment, does not store it in db
|
Shipment |
ShipmentFacadeImpl.storeShipmentInDb(Shipment s) |
Shipment |
ShipmentFacade.storeShipmentInDb(Shipment s)
Actually stores correctly created shipment in the db
|
Modifier and Type | Method and Description |
---|---|
List<Shipment> |
ShipmentFacadeImpl.getAllShipments() |
List<Shipment> |
ShipmentFacade.getAllShipments()
Get all shipments
|
Modifier and Type | Method and Description |
---|---|
Shipment |
ShipmentFacadeImpl.storeShipmentInDb(Shipment s) |
Shipment |
ShipmentFacade.storeShipmentInDb(Shipment s)
Actually stores correctly created shipment in the db
|
Modifier and Type | Method and Description |
---|---|
Shipment |
ShipmentServiceImpl.getById(long id) |
Shipment |
ShipmentService.getById(long id)
Return shipment of given id
|
Modifier and Type | Method and Description |
---|---|
List<Shipment> |
ShipmentServiceImpl.getAllShipments() |
List<Shipment> |
ShipmentService.getAllShipments()
Get all shipments
|
Modifier and Type | Method and Description |
---|---|
long |
ShipmentServiceImpl.create(Shipment shipment) |
long |
ShipmentService.create(Shipment shipment)
Creates new shipment
|
void |
ShipmentServiceImpl.delete(Shipment shipment) |
void |
ShipmentService.delete(Shipment shipment)
Deletes shipment
|
void |
ShipmentServiceImpl.update(Shipment shipment) |
void |
ShipmentService.update(Shipment shipment)
Updates shipment
|
Copyright © 2017 Pivotal Software, Inc.. All rights reserved.