TransportUnitMO.java

  1. /*
  2.  * Copyright 2005-2025 the original author or authors.
  3.  *
  4.  * Licensed under the Apache License, Version 2.0 (the "License");
  5.  * you may not use this file except in compliance with the License.
  6.  * You may obtain a copy of the License at
  7.  *
  8.  * http://www.apache.org/licenses/LICENSE-2.0
  9.  *
  10.  * Unless required by applicable law or agreed to in writing, software
  11.  * distributed under the License is distributed on an "AS IS" BASIS,
  12.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13.  * See the License for the specific language governing permissions and
  14.  * limitations under the License.
  15.  */
  16. package org.openwms.common.transport.api.messages;

  17. import com.fasterxml.jackson.annotation.JsonFormat;
  18. import com.fasterxml.jackson.annotation.JsonProperty;
  19. import jakarta.validation.Valid;
  20. import jakarta.validation.constraints.NotBlank;
  21. import jakarta.validation.constraints.NotNull;
  22. import org.openwms.common.location.api.messages.LocationMO;
  23. import org.openwms.common.transport.api.ValidationGroups;

  24. import java.io.Serializable;
  25. import java.time.LocalDateTime;
  26. import java.util.StringJoiner;

  27. import static org.openwms.common.transport.api.TransportApiConstants.DATETIME_FORMAT_ZULU;

  28. /**
  29.  * A TransportUnitMO is a Message Object (MO) that represents a {@code TransportUnit}.
  30.  *
  31.  * @author Heiko Scherrer
  32.  */
  33. public class TransportUnitMO implements Serializable {

  34.     /** The persistent key of TransportUnit. */
  35.     @NotBlank(groups = {
  36.             ValidationGroups.TransportUnit.Request.class,
  37.             ValidationGroups.TransportUnit.Remove.class
  38.     })
  39.     private String pKey;

  40.     /** The business key of the TransportUnit. */
  41.     @NotBlank(groups = {
  42.             ValidationGroups.TransportUnit.ChangeTarget.class,
  43.             ValidationGroups.TransportUnit.Create.class,
  44.             ValidationGroups.TransportUnit.Modified.class
  45.     })
  46.     private String barcode;

  47.     /** The actualLocationDate of the TransportUnit. */
  48.     @JsonProperty("actualLocationDate")
  49.     @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = DATETIME_FORMAT_ZULU) // required
  50.     private LocalDateTime actualLocationDate;

  51.     /** The state of the TransportUnit. */
  52.     private String state;

  53.     /** The actualLocation of the TransportUnit. */
  54.     @NotNull(groups = {
  55.             ValidationGroups.TransportUnit.Create.class,
  56.             ValidationGroups.TransportUnit.Modified.class
  57.     })
  58.     private LocationMO actualLocation;

  59.     /** The targetLocation of the TransportUnit. */
  60.     @NotNull(groups = {
  61.             ValidationGroups.TransportUnit.ChangeTarget.class
  62.     })
  63.     private LocationMO targetLocation;

  64.     /** The transportUnitType of the TransportUnit. */
  65.     @Valid
  66.     @NotNull(groups = {
  67.             ValidationGroups.TransportUnit.Modified.class
  68.     })
  69.     private TransportUnitTypeMO transportUnitType;

  70.     /** The business key of the parent TransportUnit. */
  71.     private String parent;

  72.     /**  Required Default constructor. */
  73.     public TransportUnitMO() { }

  74.     private TransportUnitMO(Builder builder) {
  75.         setpKey(builder.pKey);
  76.         setBarcode(builder.barcode);
  77.         setActualLocationDate(builder.actualLocationDate);
  78.         setState(builder.state);
  79.         setActualLocation(builder.actualLocation);
  80.         setTargetLocation(builder.targetLocation);
  81.         setTransportUnitType(builder.transportUnitType);
  82.         setParent(builder.parent);
  83.     }

  84.     public static Builder newBuilder() {
  85.         return new Builder();
  86.     }

  87.     public boolean hasTargetLocation() {
  88.         return this.targetLocation != null;
  89.     }

  90.     public String getpKey() {
  91.         return pKey;
  92.     }

  93.     public void setpKey(String pKey) {
  94.         this.pKey = pKey;
  95.     }

  96.     public String getBarcode() {
  97.         return barcode;
  98.     }

  99.     public void setBarcode(String barcode) {
  100.         this.barcode = barcode;
  101.     }

  102.     public LocalDateTime getActualLocationDate() {
  103.         return actualLocationDate;
  104.     }

  105.     public void setActualLocationDate(LocalDateTime actualLocationDate) {
  106.         this.actualLocationDate = actualLocationDate;
  107.     }

  108.     public String getState() {
  109.         return state;
  110.     }

  111.     public void setState(String state) {
  112.         this.state = state;
  113.     }

  114.     public LocationMO getActualLocation() {
  115.         return actualLocation;
  116.     }

  117.     public void setActualLocation(LocationMO actualLocation) {
  118.         this.actualLocation = actualLocation;
  119.     }

  120.     public LocationMO getTargetLocation() {
  121.         return targetLocation;
  122.     }

  123.     public void setTargetLocation(LocationMO targetLocation) {
  124.         this.targetLocation = targetLocation;
  125.     }

  126.     public TransportUnitTypeMO getTransportUnitType() {
  127.         return transportUnitType;
  128.     }

  129.     public void setTransportUnitType(TransportUnitTypeMO transportUnitType) {
  130.         this.transportUnitType = transportUnitType;
  131.     }

  132.     public String getParent() {
  133.         return parent;
  134.     }

  135.     public void setParent(String parent) {
  136.         this.parent = parent;
  137.     }

  138.     /**
  139.      * {@inheritDoc}
  140.      *
  141.      * All fields.
  142.      */
  143.     @Override
  144.     public String toString() {
  145.         return new StringJoiner(", ", TransportUnitMO.class.getSimpleName() + "[", "]")
  146.                 .add("pKey='" + pKey + "'")
  147.                 .add("barcode='" + barcode + "'")
  148.                 .add("actualLocationDate=" + actualLocationDate)
  149.                 .add("state='" + state + "'")
  150.                 .add("actualLocation=" + actualLocation)
  151.                 .add("targetLocation=" + targetLocation)
  152.                 .add("transportUnitType=" + transportUnitType)
  153.                 .add("parent='" + parent + "'")
  154.                 .toString();
  155.     }

  156.     public static final class Builder {
  157.         private String pKey;
  158.         private String barcode;
  159.         private LocalDateTime actualLocationDate;
  160.         private String state;
  161.         private LocationMO actualLocation;
  162.         private LocationMO targetLocation;
  163.         private TransportUnitTypeMO transportUnitType;
  164.         private String parent;

  165.         private Builder() {
  166.         }

  167.         public Builder withPKey(String val) {
  168.             pKey = val;
  169.             return this;
  170.         }

  171.         public Builder withBarcode(String val) {
  172.             barcode = val;
  173.             return this;
  174.         }

  175.         public Builder withActualLocationDate(LocalDateTime val) {
  176.             actualLocationDate = val;
  177.             return this;
  178.         }

  179.         public Builder withState(String val) {
  180.             state = val;
  181.             return this;
  182.         }

  183.         public Builder withActualLocation(LocationMO val) {
  184.             actualLocation = val;
  185.             return this;
  186.         }

  187.         public Builder withTargetLocation(LocationMO val) {
  188.             targetLocation = val;
  189.             return this;
  190.         }

  191.         public Builder withTransportUnitType(TransportUnitTypeMO val) {
  192.             transportUnitType = val;
  193.             return this;
  194.         }

  195.         public Builder withParent(String val) {
  196.             parent = val;
  197.             return this;
  198.         }

  199.         public TransportUnitMO build() {
  200.             return new TransportUnitMO(this);
  201.         }
  202.     }
  203. }