1 package org.jboss.test.support.jar2;2 3 import org.jboss.test.support.jar1.simple1.ISimpleBean;4 5 public class Jar1Consumer6 {7 ISimpleBean bean;8 9 public Jar1Consumer()10 {11 12 }13 14 public ISimpleBean getBean()15 {16 return bean;17 }18 public void setBean(ISimpleBean bean)19 {20 this.bean = bean;21 }22 }23