Constructor companyOIDConstructor = companyOIDClass.getConstructor(new Class[] {String.class});
Object companyOID = companyOIDConstructor.newInstance (new Object[] {companyOIDString});
return companyOID;
}
catch (Exception ex) {
throw new JDOFatalInternalException (
"PMFProperties must be configured with the following properties\n" +
"\torg.apache.jdo.tck.extents.CompanyOID = <string result of oid.toString()>\n" +
"\torg.apache.jdo.tck.extents.CompanyOIDClass = <name of companyOID class>\n", ex);
}
}