Package info.walnutstreet.vs.ps03.cache.container

Examples of info.walnutstreet.vs.ps03.cache.container.Order


   * @throws RemoteException
   */
  public GoodModel(Integer id, String name) throws InvalidUniqueIdException, RemoteException {
    super();
    if (id <= 0)
      throw new InvalidUniqueIdException();
   
    this.id = id;
    this.name = name;
    this.price = 0.0;
    this.available = 0;
View Full Code Here


  /* (non-Javadoc)
   * @see info.walnutstreet.vs.ps03.model.interfaces.GoodModelInterface#setId(java.lang.Integer)
   */
  public synchronized void setId(Integer id) throws InvalidUniqueIdException, RemoteException {
    if (id <= 0)
      throw new InvalidUniqueIdException();
    this.id = id;
  }
View Full Code Here

TOP

Related Classes of info.walnutstreet.vs.ps03.cache.container.Order

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.