Object home = null;
ClassFinder finder = null;
List<Field> fieldList = null;
finder = new ClassFinder(getClassPath());
fieldList = finder.findAnnotatedFields(EJB.class);
for(Iterator fields = fieldList.iterator(); fields.hasNext();) {
Field field = (Field) fields.next();
EJB ejbAnnotation = field.getAnnotation(EJB.class);
if( (ejbAnnotation.name() != null) && (ejbAnnotation.name() != "") && (ejbAnnotation.beanInterface() != null)) {
try {