1 /***************************************************************************** 2 * Copyright (C) PicoContainer Organization. All rights reserved. * 3 * ------------------------------------------------------------------------- * 4 * The software in this package is published under the terms of the BSD * 5 * style license a copy of which has been included with this distribution in * 6 * the LICENSE.txt file. * 7 * * 8 * Original code by Joerg Schaible * 9 *****************************************************************************/ 10 package org.picocontainer.testmodel; 11 12 public class PurseBean { 13 PersonBean owner; 14 public PersonBean getOwner() { 15 return owner; 16 } 17 public void setOwner(PersonBean owner) { 18 this.owner = owner; 19 } 20 } 21