All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.konik.zugferd.entity.trade.Trade Maven / Gradle / Ivy

There is a newer version: 1.3.2
Show newest version
/*
 * Copyright (C) 2014 konik.io
 *
 * This file is part of Konik library.
 *
 * Konik library is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Konik library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with Konik library.  If not, see .
 */
package io.konik.zugferd.entity.trade;

import io.konik.validator.annotation.NotEmpty;
import io.konik.zugferd.entity.trade.item.Item;

import javax.validation.Valid;
import javax.validation.constraints.NotNull;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;

/**
 * = The Trade transaction.
 * 
 * A Trade contains "global" agreements, delivery and settlement part and an item based part.
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SupplyChainTradeTransactionType", propOrder = { "agreement", "delivery", "settlement", "items" })
public class Trade implements Serializable {

   @XmlElement(name = "ApplicableSupplyChainTradeAgreement")
   private Agreement agreement;

   @XmlElement(name = "ApplicableSupplyChainTradeDelivery")
   private Delivery delivery;

   @XmlElement(name = "ApplicableSupplyChainTradeSettlement")
   private Settlement settlement;

   @XmlElement(name = "IncludedSupplyChainTradeLineItem")
   private List items;

   /**
    * Gets the trade agreement.
    *
    * @return the agreement
    */
   @Valid
   @NotNull
   public Agreement getAgreement() {
      return agreement;
   }

   /**
    * Sets the trade agreement.
    *
    * @param agreement the new agreement
    * @return the trade
    */
   public Trade setAgreement(Agreement agreement) {
      this.agreement = agreement;
      return this;
   }

   /**
    * Gets the trade delivery.
    * 
    * @return the trade delivery
    */
   @Valid
   @NotNull
   public Delivery getDelivery() {
      return delivery;
   }

   /**
    * Sets the trade delivery.
    * 
    * @param delivery the new trade delivery
    * @return the trade
    */
   public Trade setDelivery(Delivery delivery) {
      this.delivery = delivery;
      return this;
   }

   /**
    * Gets the trade settlement.
    * 
    * @return the trade settlement
    */
   @Valid
   @NotNull
   public Settlement getSettlement() {
      return settlement;
   }

   /**
    * Sets the trade settlement.
    *
    * @param tradeSettlement the new trade settlement
    * @return the trade
    */
   public Trade setSettlement(Settlement tradeSettlement) {
      this.settlement = tradeSettlement;
      return this;
   }

   /**
    * Gets the trade items.
    * 
    * @return the items
    */
   @Valid
   @NotEmpty
   public List getItems() {
      if (items == null) {
         items = new ArrayList();
      }
      return this.items;
   }

   /**
    * Adds an trade item.
    * 
    * @param item the item
    * @return the trade
    */
   public Trade addItem(Item item) {
      getItems().add(item);
      return this;
   }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy