summaryrefslogtreecommitdiffstats
path: root/sdo-java/trunk-cts/sdo2.1/src/main/java/test/sdo21/tests/TestData/TestDataFactory.java
blob: bb8437478486e7cf79129edae9830cb4e82b8ce0 (plain)
1
2
3
4
5
6
7
8
9
package test.sdo21.tests.TestData;

import commonj.sdo.DataObject;
import commonj.sdo.helper.HelperContext;

public interface TestDataFactory { 
  public void defineMetaData(HelperContext scope)  throws Exception;
  public DataObject createTestData(HelperContext scope, String variant) throws Exception;
}