|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use LocationGroup | |
---|---|
org.openwms.common.domain | Contains essential domain classes of the COMMON module. |
org.openwms.common.integration.jpa | This package contains classes belonging to the integration layer using JPA. |
org.openwms.common.service | Interface definitions of the COMMON Module service layer. |
org.openwms.common.service.spring | This package provides common used business logic. |
org.openwms.tms.domain.order | Contains essential domain classes of the TMS module. |
org.openwms.tms.integration | Repository interfaces; implementations perform data access operations on tms base classes. |
org.openwms.tms.integration.jpa | Repository implementations of the TMS module. |
org.openwms.tms.service | Interfaces of the TMS service layer; implementations provide business logic specific to TMS. |
org.openwms.tms.service.spring | This package provides business logic to perform common actions of the transport management. |
org.openwms.tms.service.spring.voter | This package contains classes implementing the voter pattern. |
Uses of LocationGroup in org.openwms.common.domain |
---|
Methods in org.openwms.common.domain that return LocationGroup | |
---|---|
LocationGroup |
Location.getLocationGroup()
Return the LocationGroup where the
Location belongs to. |
LocationGroup |
LocationGroup.getParent()
Returns the parent LocationGroup . |
Methods in org.openwms.common.domain that return types with arguments of type LocationGroup | |
---|---|
Set<LocationGroup> |
LocationGroup.getLocationGroups()
Return all child LocationGroup . |
Methods in org.openwms.common.domain with parameters of type LocationGroup | |
---|---|
boolean |
LocationGroup.addLocationGroup(LocationGroup locationGroup)
Add a LocationGroup to the list of children. |
boolean |
LocationGroup.removeLocationGroup(LocationGroup locationGroup)
Remove a LocationGroup from the list of children. |
void |
LocationGroup.setGroupStateIn(LocationGroupState groupStateIn,
LocationGroup locker)
Change the infeed state of the LocationGroup . |
void |
LocationGroup.setGroupStateOut(LocationGroupState groupStateOut,
LocationGroup locker)
Set the outfeed state of the LocationGroup . |
void |
Location.setLocationGroup(LocationGroup locationGroup)
Add this Location to the locationGroup . |
void |
LocationGroup.setParent(LocationGroup parent)
Set the parent LocationGroup . |
Uses of LocationGroup in org.openwms.common.integration.jpa |
---|
Methods in org.openwms.common.integration.jpa with parameters of type LocationGroup | |
---|---|
protected void |
LocationGroupDaoImpl.beforeUpdate(LocationGroup entity)
Update the date of last change before update. |
Uses of LocationGroup in org.openwms.common.service |
---|
Classes in org.openwms.common.service with type parameters of type LocationGroup | |
---|---|
interface |
LocationGroupService<T extends LocationGroup>
A LocationGroupService - Extends the EntityService interface about
some useful methods regarding the general handling with LocationGroup
s. |
Uses of LocationGroup in org.openwms.common.service.spring |
---|
Methods in org.openwms.common.service.spring that return LocationGroup | |
---|---|
protected LocationGroup |
LocationGroupServiceImpl.mergeLocationGroup(LocationGroup persisted,
LocationGroup locationGroup)
Save changed fields by setting them directly. |
LocationGroup |
LocationGroupServiceImpl.save(LocationGroup locationGroup)
Save an entity of type T . |
Methods in org.openwms.common.service.spring that return types with arguments of type LocationGroup | |
---|---|
List<LocationGroup> |
LocationGroupServiceImpl.getLocationGroupsAsList()
Returns a List of all LocationGroup s. |
TreeNode<LocationGroup> |
LocationGroupServiceImpl.getLocationGroupsAsTree()
Returns a hierarchical Tree of all LocationGroup s. |
Methods in org.openwms.common.service.spring with parameters of type LocationGroup | |
---|---|
void |
LocationGroupServiceImpl.changeGroupState(LocationGroup locationGroup)
Changes the GroupStates of a LocationGroup .Both, the GroupStateIn and the GroupStateOut of all child LocationGroup s are changed according to the parent
locationGroup. |
protected void |
LocationGroupServiceImpl.changeGroupState(LocationGroup persisted,
LocationGroup locationGroup)
Regarding at least one groupState has changed the state is set on the LocationGroup directly. |
protected LocationGroup |
LocationGroupServiceImpl.mergeLocationGroup(LocationGroup persisted,
LocationGroup locationGroup)
Save changed fields by setting them directly. |
LocationGroup |
LocationGroupServiceImpl.save(LocationGroup locationGroup)
Save an entity of type T . |
Uses of LocationGroup in org.openwms.tms.domain.order |
---|
Methods in org.openwms.tms.domain.order that return LocationGroup | |
---|---|
LocationGroup |
TransportOrder.getTargetLocationGroup()
Get the targetLocationGroup. |
Methods in org.openwms.tms.domain.order with parameters of type LocationGroup | |
---|---|
void |
TransportOrder.setTargetLocationGroup(LocationGroup targetLocationGroup)
Set the targetLocationGroup. |
Uses of LocationGroup in org.openwms.tms.integration |
---|
Methods in org.openwms.tms.integration with parameters of type LocationGroup | |
---|---|
int |
TransportOrderDao.getNumberOfTransportOrders(LocationGroup locationGroup)
Get all active TransportOrder s that have the target destination
to this locationGroup. |
Uses of LocationGroup in org.openwms.tms.integration.jpa |
---|
Methods in org.openwms.tms.integration.jpa with parameters of type LocationGroup | |
---|---|
int |
TransportOrderDaoImpl.getNumberOfTransportOrders(LocationGroup locationGroup)
Get all active TransportOrder s that have the target destination
to this locationGroup. |
Uses of LocationGroup in org.openwms.tms.service |
---|
Methods in org.openwms.tms.service with parameters of type LocationGroup | |
---|---|
T |
TransportOrderService.createTransportOrder(Barcode barcode,
LocationGroup targetLocationGroup,
Location targetLocation,
PriorityLevel priority)
Create a new TransportOrder . |
T |
TransportOrderService.createTransportOrder(Barcode barcode,
LocationGroup targetLocationGroup,
PriorityLevel priority)
Create a new TransportOrder . |
int |
TransportOrderService.getTransportsToLocationGroup(LocationGroup locationGroup)
Returns the actual number of active transports that have the locationGroup as target LocationGroup . |
List<Integer> |
TransportOrderService.redirectTransportOrders(List<Integer> transportOrders,
LocationGroup targetLocationGroup,
Location targetLocation)
Try to redirect a list of TransportOrder s to a new target
LocationGroup . |
Uses of LocationGroup in org.openwms.tms.service.spring |
---|
Methods in org.openwms.tms.service.spring with parameters of type LocationGroup | |
---|---|
TransportOrder |
TransportServiceImpl.createTransportOrder(Barcode barcode,
LocationGroup targetLocationGroup,
Location targetLocation,
PriorityLevel priority)
Create a new TransportOrder . |
TransportOrder |
TransportServiceImpl.createTransportOrder(Barcode barcode,
LocationGroup targetLocationGroup,
PriorityLevel priority)
Create a new TransportOrder . |
int |
TransportServiceImpl.getTransportsToLocationGroup(LocationGroup locationGroup)
Returns the actual number of active transports that have the locationGroup as target LocationGroup . |
List<Integer> |
TransportServiceImpl.redirectTransportOrders(List<Integer> ids,
LocationGroup targetLocationGroup,
Location targetLocation)
Try to redirect a list of TransportOrder s to a new target
LocationGroup . |
Uses of LocationGroup in org.openwms.tms.service.spring.voter |
---|
Methods in org.openwms.tms.service.spring.voter that return LocationGroup | |
---|---|
LocationGroup |
RedirectVote.getLocationGroup()
Get the locationGroup. |
Constructors in org.openwms.tms.service.spring.voter with parameters of type LocationGroup | |
---|---|
RedirectVote(LocationGroup targetLocationGroup,
Location targetLocation)
Create a new RedirectVote. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |