Examples of createObject()


Examples of de.mhus.lib.adb.model.Table.createObject()

      c.prepareCreate(object);
      schema.doPreCreate(c,object,con,this);
     
      //save object
   
      c.createObject(con,object);
     
      schema.doPostLoad(c,object,con,this);

    } catch (Throwable t) {
      throw new MException(registryName,t);
View Full Code Here

Examples of de.willuhn.datasource.rmi.DBService.createObject()

  void importObject(Object o, int idx, Map ctx) throws Exception
  {
    DBService service = de.willuhn.jameica.hbci.Settings.getDBService();

    Properties prop = (Properties) o;
    AuslandsUeberweisung u = (AuslandsUeberweisung) service.createObject(AuslandsUeberweisung.class,null);
    u.setKonto(this.findKonto(prop.getProperty(ISEPAParser.Names.SRC_IBAN.getValue())));
    u.setGegenkontoName(prop.getProperty(ISEPAParser.Names.DST_NAME.getValue()));
    u.setGegenkontoNummer(prop.getProperty(ISEPAParser.Names.DST_IBAN.getValue()));
    u.setGegenkontoBLZ(prop.getProperty(ISEPAParser.Names.DST_BIC.getValue()));
    u.setZweck(prop.getProperty(ISEPAParser.Names.USAGE.getValue()));
View Full Code Here

Examples of de.willuhn.jameica.hbci.rmi.HBCIDBService.createObject()

        inDb |= !l.isNewObject();
        String key = this.createKey(l);
        SepaSammelUeberweisung s = map.get(key);
        if (s == null)
        {
          s = (SepaSammelUeberweisung) service.createObject(SepaSammelUeberweisung.class,null);
          s.setKonto(l.getKonto());
          s.setBezeichnung(i18n.tr("SEPA-Sammel�berweisung vom {0}",HBCI.LONGDATEFORMAT.format(new Date())));
          map.put(key,s);
        }
      }
View Full Code Here

Examples of edu.indiana.extreme.gfac.beanutils.ApplicationUtils.createObject()

      ApplicationBean application = new ApplicationBean( applicationName, hostName,
          executable,  workDir, tmpDir, jobType,
          query, maxWallTime, pcount,
          leadNameListFile, projectName);
      ApplicationUtils appInfoUtils = new ApplicationUtils();
      appInfoUtils.createObject(context.getRegService(), application);
         return application;
}

    public MethodBean addServiceOperation(ApplicationGlobalContext context,ApplicationBean applicationInfoBean)
      throws GfacException{
View Full Code Here

Examples of net.sf.joafip.store.service.objectio.serialize.input.IObjectInput.createObject()

    final IObjectInput objectInput = new ObjectInputImmediateSerializable(
        this, classInfoFactory, proxyManager2, helperBinaryConversion);

    final StorageInfo storageInfo = new StorageInfo();
    // storageInfo.setHeaderDataSize(0);
    ObjectAndPersistInfo unserializedAndPersistInfo = objectInput
        .createObject(dataRecordIdentifier, binary, classInfo,
            storageInfo);
    originalValue = unserializedAndPersistInfo.originalValue;
    assertSons(toSerialize, originalValue, referenceds);
    final Object unserialized = unserializedAndPersistInfo.getObject();
View Full Code Here

Examples of net.sf.joafip.store.service.objectio.serialize.input.ObjectInputForBasic.createObject()

                     */, objectAndItsClassInfo, false/* updateOriginalValue */);
    // dummy data record identifier for object
    final DataRecordIdentifier dataRecordIdentifier = DataRecordIdentifier.LAST;
    final IObjectInput objectInput = new ObjectInputForBasic(this,
        classInfoFactory, proxyManager2, helperBinaryConversion);
    final Integer created = (Integer) objectInput.createObject(
        dataRecordIdentifier, binary, classInfo, storageInfo)
        .getObject();
    assertEquals("read and wrote must have the same value", integer,
        created);
  }
View Full Code Here

Examples of net.sf.joafip.store.service.objectio.serialize.input.ObjectInputImmediateSerializable.createObject()

    final IObjectInput objectInput = new ObjectInputImmediateSerializable(
        this, classInfoFactory, proxyManager2, helperBinaryConversion);

    final StorageInfo storageInfo = new StorageInfo();
    // storageInfo.setHeaderDataSize(0);
    ObjectAndPersistInfo unserializedAndPersistInfo = objectInput
        .createObject(dataRecordIdentifier, binary, classInfo,
            storageInfo);
    originalValue = unserializedAndPersistInfo.originalValue;
    assertSons(toSerialize, originalValue, referenceds);
    final Object unserialized = unserializedAndPersistInfo.getObject();
View Full Code Here

Examples of nexj.core.meta.integration.EndpointPart.createObject()

            }
            else if (mapping.isFixedDestination(i))
            {
               if (list.isEmpty())
               {
                  tobj = destinationPart.createObject();
                  list.add(tobj);
               }
               else
               {
                  tobj = (TransferObject)list.get(0);
View Full Code Here

Examples of org.apache.cayenne.cache.QueryCacheEntryFactory.createObject()

                        .getPrefetchResultsByPath();
            }
        }
        else {
            // on cache-refresh request, fetch without blocking and fill the cache
            queryCache.put(metadata, (List) factory.createObject());
        }

        return DONE;
    }
View Full Code Here

Examples of org.apache.cayenne.cache.QueryCacheEntryFactory.createObject()

                response = new ListResponse(cachedResults);
            }
        }
        else {
            // on cache-refresh request, fetch without blocking and fill the cache
            queryCache.put(metadata, (List) factory.createObject());
        }

        return DONE;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.