UI for Zipcoin Blue
Tennessee Gibbs 0304752480 added pages to master 6 年 前
..
node_modules/is-extendable added pages to master 6 年 前
LICENSE added pages to master 6 年 前
README.md added pages to master 6 年 前
index.js added pages to master 6 年 前
package.json added pages to master 6 年 前

README.md

package se.citerus.dddsample.domain.model.cargo;

import se.citerus.dddsample.domain.shared.ValueObject; import se.citerus.dddsample.domain.model.shared.HandlingActivity; import static se.citerus.dddsample.domain.model.cargo.RoutingStatus.ROUTED; import se.citerus.dddsample.domain.model.location.Location; import se.citerus.dddsample.domain.model.voyage.Voyage; import se.citerus.dddsample.domain.model.handling.HandlingEvent;

import java.util.Date; import java.util.Iterator;

import org.apache.commons.lang.builder.EqualsBuilder; import org.apache.commons.lang.builder.HashCodeBuilder;

/**

  • These are projections about the future handling of the cargo,
  • when it will arrive and what the next step is. *
  • It is updated on routing changes as well as handling. * */ public class Projections implements ValueObject {

    private Date estimatedTimeOfArrival; private HandlingActivity nextExpectedActivity;

    private static final Date ETA_UNKOWN = null; private static final HandlingActivity