Uses of Class
org.openwms.common.transport.TransportUnit
Package
Description
This package contains all types required to describe transport unit items.
This package contains all types required for asynchronous Event handling.
This package contains internal implementation classes.
This package contains types for extension points and hooks (SPI - Service Provider Interface).
-
Uses of TransportUnit in org.openwms.common.transport
Modifier and TypeFieldDescriptionprivate TransportUnit
TransportUnit.parent
OwningTransportUnit
.private TransportUnit
UnitError.Builder.transportUnit
private TransportUnit
UnitError.transportUnit
Modifier and TypeFieldDescriptionprivate Set
<TransportUnit> TransportUnit.children
A set of all childTransportUnit
s, ordered by id.private Set
<TransportUnit> TransportUnitType.Builder.transportUnits
private Set
<TransportUnit> TransportUnitType.transportUnits
A collection of allTransportUnit
s belonging to this type.Modifier and TypeMethodDescription@NotNull TransportUnit
TransportUnitService.changeTarget
(@NotNull Barcode barcode, @NotBlank String targetLocationId) Change the target of theTransportUnit
identified with itsbarcode
to the Location identified by thetargetLocationId
.abstract TransportUnit
TransportUnitMapper.convert
(TransportUnitVO vo) TransportUnitMapperImpl.convert
(TransportUnitVO vo) @NotNull TransportUnit
TransportUnitService.create
(@NotBlank String transportUnitBK, @NotBlank String transportUnitType, @NotBlank String actualLocation, Boolean strict) @NotNull TransportUnit
TransportUnitService.create
(@NotBlank String transportUnitBK, @NotNull TransportUnitType transportUnitType, @NotNull LocationPK actualLocation, Boolean strict) @NotNull TransportUnit
@NotNull TransportUnit
TransportUnitService.findByBarcode
(@NotBlank String transportUnitBK) Find and return aTransportUnit
by it'stransportUnitBK
.@NotNull TransportUnit
TransportUnitService.findByPKey
(@NotBlank String pKey) Find and return aTransportUnit
identified by the givenpKey
.TransportUnit.getParent()
Returns the parentTransportUnit
.UnitError.getTransportUnit()
@NotNull TransportUnit
TransportUnitService.moveTransportUnit
(@NotNull Barcode barcode, @NotBlank String targetLocation) Move aTransportUnit
identified by itsBarcode
to theLocation
identified by the giventargetLocationPK
.@NotNull TransportUnit
TransportUnitService.update
(@NotNull Barcode barcode, @Valid @NotNull TransportUnit tu) Take the TransportUnittu
and try to update it as-is in the persistent storage.Modifier and TypeMethodDescription@NotNull List
<TransportUnit> TransportUnitService.findAll()
Find and return all existingTransportUnit
s.@NotNull List
<TransportUnit> TransportUnitService.findByBarcodes
(@NotEmpty List<Barcode> barcodes) Find and return allTransportUnit
s identified by their particularBarcode
.@NotNull List
<TransportUnit> TransportUnitService.findOnLocation
(@NotBlank String actualLocation) Find and return allTransportUnit
s that are located on theLocation
identified by the givenactualLocation
.TransportUnit.getChildren()
Get all childTransportUnit
s.TransportUnitType.getTransportUnits()
Returns a Set of allTransportUnit
s belonging to theTransportUnitType
.Modifier and TypeMethodDescriptionvoid
TransportUnit.addChild
(TransportUnit transportUnit) Add aTransportUnit
to the children.private TransportUnitVO
TransportUnitController.convertAndLinks
(TransportUnit entity) abstract TransportUnitMO
TransportUnitMapper.convertToMO
(TransportUnit eo) TransportUnitMapperImpl.convertToMO
(TransportUnit eo) abstract TransportUnitVO
TransportUnitMapper.convertToVO
(TransportUnit eo) TransportUnitMapperImpl.convertToVO
(TransportUnit eo) abstract void
TransportUnitMapper.copy
(TransportUnit source, TransportUnit target) void
TransportUnitMapperImpl.copy
(TransportUnit source, TransportUnit target) private String
TransportUnitMapperImpl.eoBarcodeValue
(TransportUnit transportUnit) private String
TransportUnitMapperImpl.eoTransportUnitTypeType
(TransportUnit transportUnit) void
TransportUnit.removeChild
(TransportUnit transportUnit) Remove aTransportUnit
from the list of children.void
TransportUnit.setParent
(TransportUnit parent) Set a parentTransportUnit
.(package private) void
UnitError.setTransportUnit
(TransportUnit transportUnit) Set the TransportUnit for this error.UnitError.Builder.transportUnit
(TransportUnit val) @NotNull TransportUnit
TransportUnitService.update
(@NotNull Barcode barcode, @Valid @NotNull TransportUnit tu) Take the TransportUnittu
and try to update it as-is in the persistent storage.Modifier and TypeMethodDescriptionprivate List
<TransportUnitVO> TransportUnitController.convertAndLinks
(List<TransportUnit> entities) abstract List
<TransportUnitVO> TransportUnitMapper.convertToVO
(List<TransportUnit> eo) TransportUnitMapperImpl.convertToVO
(List<TransportUnit> eo) void
TransportUnitService.deleteTransportUnits
(@NotNull List<TransportUnit> transportUnits) Delete already persistedTransportUnit
s from the persistent storage.private void
TransportUnitType.setTransportUnits
(Set<TransportUnit> transportUnits) Assign a Set ofTransportUnit
s to theTransportUnitType
.TransportUnitType.Builder.transportUnits
(Set<TransportUnit> val) Sets thetransportUnits
and returns a reference to this Builder so that the methods can be chained together. -
Uses of TransportUnit in org.openwms.common.transport.allocation.spi
Modifier and TypeFieldDescriptionprivate TransportUnit
TransportUnitAllocation.AllocationBuilder.transportUnit
private TransportUnit
TransportUnitAllocation.transportUnit
Modifier and TypeMethodDescriptionvoid
TransportUnitAllocation.setTransportUnit
(TransportUnit transportUnit) TransportUnitAllocation.AllocationBuilder.transportUnit
(TransportUnit transportUnit) -
Uses of TransportUnit in org.openwms.common.transport.events
Modifier and TypeMethodDescriptionstatic TransportUnitEvent
TransportUnitEvent.of
(TransportUnit tu, TransportUnitEvent.TransportUnitEventType type) static TransportUnitTypeEvent
TransportUnitTypeEvent.of
(TransportUnit tu, TransportUnitTypeEvent.TransportUnitTypeEventType type) TransportUnitEvent.Builder.tu
(TransportUnit val) -
Uses of TransportUnit in org.openwms.common.transport.impl
Modifier and TypeMethodDescriptionTransportUnitServiceImpl.changeTarget
(@NotNull Barcode barcode, @NotBlank String targetLocation) Change the target of theTransportUnit
identified with itsbarcode
to the Location identified by thetargetLocationId
.@NotNull TransportUnit
TransportUnitServiceImpl.create
(@NotBlank String transportUnitBK, @NotBlank String transportUnitType, @NotBlank String actualLocation, Boolean strict) @NotNull TransportUnit
TransportUnitServiceImpl.create
(@NotBlank String transportUnitBK, @NotNull TransportUnitType transportUnitType, @NotNull LocationPK actualLocation, Boolean strict) private TransportUnit
TransportUnitServiceImpl.createInternal
(Barcode barcode, String transportUnitType, Boolean strict, Supplier<Location> locationResolver) @NotNull TransportUnit
TransportUnitServiceImpl.createNew
(@NotBlank String transportUnitType, @NotBlank String actualLocation) @NotNull TransportUnit
TransportUnitServiceImpl.findByBarcode
(@NotBlank String transportUnitBK) Find and return aTransportUnit
by it'stransportUnitBK
.private TransportUnit
TransportUnitServiceImpl.findByBarcodeInternal
(Barcode barcode) @NotNull TransportUnit
TransportUnitServiceImpl.findByPKey
(@NotBlank String pKey) Find and return aTransportUnit
identified by the givenpKey
.private TransportUnit
TransportUnitServiceImpl.findByPKeyInternal
(String pKey) private TransportUnit
TransportUnitServiceImpl.moveInternal
(TransportUnit transportUnit, Location target) @NotNull TransportUnit
TransportUnitServiceImpl.moveTransportUnit
(@NotNull Barcode barcode, @NotBlank String targetLocation) Move aTransportUnit
identified by itsBarcode
to theLocation
identified by the giventargetLocationPK
.@NotNull TransportUnit
TransportUnitServiceImpl.update
(@NotNull Barcode barcode, @Valid @NotNull TransportUnit tu) Take the TransportUnittu
and try to update it as-is in the persistent storage.Modifier and TypeMethodDescription@NotNull List
<TransportUnit> TransportUnitServiceImpl.findAll()
Find and return all existingTransportUnit
s.TransportUnitRepository.findByActualLocationOrderByActualLocationDate
(Location actualLocation) TransportUnitRepository.findByBarcode
(Barcode barcode) TransportUnitRepository.findByBarcodeIn
(List<Barcode> barcodes) @NotNull List
<TransportUnit> TransportUnitServiceImpl.findByBarcodes
(@NotEmpty List<Barcode> barcodes) Find and return allTransportUnit
s identified by their particularBarcode
.TransportUnitRepository.findByPKey
(String pKey) @NotNull List
<TransportUnit> TransportUnitServiceImpl.findOnLocation
(@NotBlank String actualLocation) Find and return allTransportUnit
s that are located on theLocation
identified by the givenactualLocation
.Modifier and TypeMethodDescriptionprivate void
TransportUnitServiceImpl.approveMove
(TransportUnit transportUnit, Location newLocation) private void
TransportUnitServiceImpl.approveStateChange
(TransportUnit transportUnit, String newState) private void
TransportUnitServiceImpl.delete
(TransportUnit transportUnit) private TransportUnit
TransportUnitServiceImpl.moveInternal
(TransportUnit transportUnit, Location target) @NotNull TransportUnit
TransportUnitServiceImpl.update
(@NotNull Barcode barcode, @Valid @NotNull TransportUnit tu) Take the TransportUnittu
and try to update it as-is in the persistent storage.Modifier and TypeMethodDescriptionvoid
TransportUnitServiceImpl.deleteTransportUnits
(@NotNull List<TransportUnit> transportUnits) Delete already persistedTransportUnit
s from the persistent storage. -
Uses of TransportUnit in org.openwms.common.transport.reservation
Modifier and TypeFieldDescriptionprivate TransportUnit
TransportUnitReservation.transportUnit
TheTransportUnit
instance, theReservation
belongs to.Modifier and TypeMethodDescriptionvoid
TransportUnitReservation.setTransportUnit
(TransportUnit transportUnit) ModifierConstructorDescriptionTransportUnitReservation
(TransportUnit transportUnit, String reservedBy) -
Uses of TransportUnit in org.openwms.common.transport.spi
Modifier and TypeMethodDescriptionvoid
TransportUnitMoveApproval.approve
(@NotNull TransportUnit transportUnit, @NotBlank Location newLocation) Approve that the requested move of thetransportUnit
to thenewLocation
is permitted.void
TransportUnitStateChangeApproval.approve
(@NotNull TransportUnit transportUnit, @NotBlank String newState) Validate whether changing the state of thetransportUnit
intonewState
is permitted.