01: package org.xdev.base.core.object;
02:
03: /**
04: * <p>Title: Reliant B2B Engine</p>
05: * <p>Description: XML Driven B2B Framework</p>
06: * <p>Copyright: Copyright (c) 2002</p>
07: * <p>Company: Reliant Energy</p>
08: * @author not attributable
09: * @version 1.0
10: */
11:
12: public interface GenericObjectStub {
13: public Object newInstance() throws Exception;
14: }
|