Package org.openwms.common.location.api
Class LocationVO
java.lang.Object
org.springframework.hateoas.RepresentationModel<LocationVO>
org.ameba.http.AbstractBase<LocationVO>
org.openwms.common.location.api.LocationVO
- All Implemented Interfaces:
Serializable
,TargetVO
public class LocationVO
extends org.ameba.http.AbstractBase<LocationVO>
implements TargetVO, Serializable
A LocationVO represents a physical or virtual place in a warehouse. Could be something like a storage location in the stock or a conveyor
location. Even error locations can be represented with the LocationVO. Multiple locations with same characteristics are grouped in
LocationGroupVO
s.- Author:
- Heiko Scherrer
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate String
The ID of theAccount
, theLocation
is assigned to.private LocalDateTime
Timestamp when theLocation
has been created.private @NotBlank(groups=Create.class) String
ERP code of theLocation
.private Boolean
Whether theLocation
is enabled for incoming movements (read-only).private @NotBlank(groups=Create.class) String
The name ofLocationGroup
theLocation
belongs to.private @NotBlank String
Unique natural key.static final String
HTTP media type representation.static final String
HTTP media type representation.private Boolean
Whether theLocation
is enabled for outgoing movements (read-only).private String
The persistent technical key of theLocation
.private @NotBlank(groups=Create.class) String
PLC code of theLocation
.private Integer
The current state, set by the PLC system (read-only).private Integer
Sort order index used by strategies for putaway, or picking.private String
Might be assigned to a particular zone in stock.private @NotBlank(groups=Create.class) String
The name of theLocationType
theLocation
belongs to.Fields inherited from class org.ameba.http.AbstractBase
DATETIME_FORMAT_ZULU
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionasString()
Returns the unique business key of the Target.boolean
All fields.getpKey()
Get the persistent key.getType()
int
hashCode()
All fields.boolean
Checks whether the Location is blocked for incoming goods.boolean
Checks whether the Location is blocked for outgoing goods.void
setAccountId
(String accountId) void
setCreateDt
(LocalDateTime createDt) void
setErpCode
(String erpCode) void
setIncomingActive
(Boolean incomingActive) void
setLocationGroupName
(String locationGroupName) void
setLocationId
(String locationId) void
setOutgoingActive
(Boolean outgoingActive) void
void
setPlcCode
(String plcCode) void
setPlcState
(Integer plcState) void
setSortOrder
(Integer sortOrder) void
setStockZone
(String stockZone) void
toString()
Only the locationId.Methods inherited from class org.ameba.http.AbstractBase
getLastModifiedDt, getOl, setLastModifiedDt, setOl
Methods inherited from class org.springframework.hateoas.RepresentationModel
add, add, add, addAllIf, addIf, getLink, getLink, getLinks, getLinks, getLinks, getRequiredLink, getRequiredLink, hasLink, hasLink, hasLinks, mapLink, mapLinkIf, of, of, removeLinks
-
Field Details
-
MEDIA_TYPE
HTTP media type representation.- See Also:
-
MEDIA_TYPE_OPT
HTTP media type representation.- See Also:
-
pKey
The persistent technical key of theLocation
. -
locationId
Unique natural key. -
accountId
The ID of theAccount
, theLocation
is assigned to. -
plcCode
PLC code of theLocation
. -
erpCode
ERP code of theLocation
. -
sortOrder
Sort order index used by strategies for putaway, or picking. -
stockZone
Might be assigned to a particular zone in stock. -
incomingActive
Whether theLocation
is enabled for incoming movements (read-only). -
outgoingActive
Whether theLocation
is enabled for outgoing movements (read-only). -
plcState
The current state, set by the PLC system (read-only). -
type
The name of theLocationType
theLocation
belongs to. -
locationGroupName
The name ofLocationGroup
theLocation
belongs to. -
createDt
Timestamp when theLocation
has been created.
-
-
Constructor Details
-
LocationVO
protected LocationVO() -
LocationVO
-
-
Method Details
-
isInfeedBlocked
public boolean isInfeedBlocked()Checks whether the Location is blocked for incoming goods.- Returns:
- true if blocked, otherwise false
-
isOutfeedBlocked
public boolean isOutfeedBlocked()Checks whether the Location is blocked for outgoing goods.- Returns:
- true if blocked, otherwise false
-
getAccountId
-
setAccountId
-
getLocationGroupName
-
setLocationGroupName
-
getpKey
Description copied from interface:TargetVO
Get the persistent key. -
setpKey
-
getLocationId
-
setLocationId
-
getType
-
setType
-
getErpCode
-
setErpCode
-
getPlcCode
-
setPlcCode
-
getSortOrder
-
setSortOrder
-
getIncomingActive
-
setIncomingActive
-
getOutgoingActive
-
setOutgoingActive
-
getPlcState
-
setPlcState
-
getStockZone
-
setStockZone
-
getCreateDt
- Overrides:
getCreateDt
in classorg.ameba.http.AbstractBase<LocationVO>
-
setCreateDt
- Overrides:
setCreateDt
in classorg.ameba.http.AbstractBase<LocationVO>
-
asString
Returns the unique business key of the Target. -
toString
Only the locationId.- Overrides:
toString
in classorg.springframework.hateoas.RepresentationModel<LocationVO>
-
equals
All fields.- Overrides:
equals
in classorg.ameba.http.AbstractBase<LocationVO>
-
hashCode
public int hashCode()All fields.- Overrides:
hashCode
in classorg.ameba.http.AbstractBase<LocationVO>
-