public DataObject create(String uri, String typeName) {
   Type sdoType = getHelperContext().getTypeHelper().getType(uri, typeName);
   if (sdoType != null) {
     return create(sdoType);
   }
   throw new IllegalArgumentException(SDOException.typeNotFound(uri, typeName));
 }