| 1 4 package com.nightlabs.ipanema.store; 5 6 import java.io.Serializable ; 7 import java.util.ArrayList ; 8 import java.util.List ; 9 10 23 public class ProductTransferTracker implements Serializable  24 { 25 29 private String organisationID; 30 31 35 private String productID; 36 37 40 private Product product; 41 42 52 protected List transfers = new ArrayList (); 53 54 protected ProductTransferTracker() { } 55 56 public ProductTransferTracker(Product product) 57 { 58 this.organisationID = product.getOrganisationID(); 59 this.productID = product.getProductID(); 60 this.product = product; 61 } 62 63 public void addProductTransfer(ProductTransfer productTransfer) 64 { 65 this.transfers.add(productTransfer); 66 } 67 } 68 | Popular Tags |