001 package org.cocome.tradingsystem.systests.interfaces; 002 003 /** 004 * Interface for a single product. This is just a marker used during the 005 * creation of products. Thus this has no methods, although an actual 006 * implementation might contain the primary key of the product (or some 007 * equivalent) as IProducts are passed to other methods. 008 * 009 * @author Benjamin Hummel 010 * @author $Author: hummel $ 011 * @version $Rev: 47 $ 012 * @levd.rating GREEN Rev: 47 013 */ 014 public interface IProduct { 015 016 }