Examples of store()


Examples of de.willuhn.jameica.hbci.rmi.Turnus.store()

    // Keiner da, dann erstellen wir ihn.
    turnus = (Turnus) Settings.getDBService().createObject(Turnus.class,null);
    turnus.setIntervall(d.turnus);
    turnus.setTag(d.execday);
    turnus.setZeiteinheit(ze);
    turnus.store();
    return turnus;
  }

  /**
   * Kleine Hilfs-Funktion, die sich eine passende Bezeichnung fuer einen Turnus selbst ausdenkt ;).
View Full Code Here

Examples of de.willuhn.jameica.hbci.rmi.Ueberweisung.store()

                case 1: // Transfer.TYP_UEBERWEISUNG:
                  Ueberweisung tu  = (Ueberweisung) service.createObject(Ueberweisung.class,s);
                  tu.setWeitereVerwendungszwecke(sl);
                  ausgefuehrt = tu.ausgefuehrt();
                  if (ausgefuehrt) ((AbstractDBObject)tu).setAttribute("ausgefuehrt",new Integer(0));
                  tu.store();
                  if (ausgefuehrt) tu.setAusgefuehrt(true);
                  break;
                case 2: // Transfer.TYP_LASTSCHRIFT:
                  Lastschrift tl = (Lastschrift) service.createObject(Lastschrift.class,s);
                  tl.setWeitereVerwendungszwecke(sl);
View Full Code Here

Examples of de.willuhn.jameica.hbci.rmi.Umsatz.store()

      transactionBegin();
      while (list.hasNext())
      {
        Umsatz u = (Umsatz) list.next();
        u.setUmsatzTyp(null);
        u.store();
      }
      super.delete();
      transactionCommit();
    }
    catch (RemoteException e)
View Full Code Here

Examples of de.willuhn.jameica.hbci.rmi.UmsatzTyp.store()

      // Nicht gefunden. Also neu anlegen
      Logger.info("auto-creating category " + value);
      t = (UmsatzTyp) Settings.getDBService().createObject(UmsatzTyp.class,null);
      t.setName(value);
      t.setTyp(UmsatzTyp.TYP_EGAL);
      t.store();
      cache.put(value.toLowerCase(),t);
      return t;
    }
    catch (Exception e)
    {
View Full Code Here

Examples of de.willuhn.jameica.hbci.rmi.Version.store()

      return (Version) list.next();
   
    // Neue Version erstellen
    Version v = (Version) service.createObject(Version.class,null);
    v.setName(name);
    v.store();
    return v;
  }
}

View Full Code Here

Examples of edu.cmu.cs.stage3.alice.core.Element.store()

    }
    public static void main( String[] args ) {
        try {
            edu.cmu.cs.stage3.alice.scenegraph.Component sgSrc = edu.cmu.cs.stage3.alice.scenegraph.io.XML.load( new java.io.File( args[ 0 ] ) );
            Element dst = convert( (edu.cmu.cs.stage3.alice.scenegraph.Container)sgSrc );
            dst.store( new java.io.File( args[ 1 ] ) );
    } catch( java.io.IOException ioe ) {
      ioe.printStackTrace();
        }
        System.exit( 0 );
    }
View Full Code Here

Examples of eu.mosaic.cloud.driver.DriverConnection.store()

        }
       
        String target = "ba4d8fd9-9924-4c35-b77a-0bd99cdd27ff";
        File f = new File("C:\\Projects\\Doctorat\\clouddb\\Driver API\\data\\ares.jpg");
       
        ac.store(target, "Ares", f);
       
        //ac.copy("ba4d8fd9-9924-4c35-b77a-0bd99cdd27ff", "Ares", "5fe65b49-b08e-47da-8b8e-74559cb0a2e7", "Hannibal");
        ac.move("5fe65b49-b08e-47da-8b8e-74559cb0a2e7", "Hannibal", "7167af05-bc56-450a-92ec-d02c1bbd35c0", "Hannibalus");
       
      //ac.store("", "", new Object());
View Full Code Here

Examples of eu.planets_project.ifr.core.storage.impl.jcr.JcrDigitalObjectManagerImpl.store()

            wfResultItem.addLogInfo("STEP 2: Insert in JCR repository. initial digital object: " + dgoA.toString());
            // Manage the Digital Object Data Registry:
            wfResultItem.addLogInfo("Initialize JCR repository instance.");
            JcrDigitalObjectManagerImpl dodm =
               (JcrDigitalObjectManagerImpl) JcrDigitalObjectManagerImpl.getInstance();
            DigitalObject dgoB = dodm.store(PERMANENT_URI_PATH, dgoA, true);
           wfResultItem.addLogInfo("Completed storing in JCR repository: " + dgoB.toString());
           
           // Enrich digital object with format information from identification service
           if (types != null) {
             wfResultItem.addLogInfo("Identified formats count: " + types.length);
View Full Code Here

Examples of eu.scape_project.planning.manager.ByteStreamManager.store()

        contentByteStream.setData(content.getBytes());
        object.setData(contentByteStream);

        // mock ByteStreamManager
        ByteStreamManager byteStreamManager = mock(ByteStreamManager.class);
        when(byteStreamManager.store(null, content.getBytes())).thenReturn("myPid");

        // execute test
        DigitalObjectManager digitalObjectManager = new DigitalObjectManager();
        digitalObjectManager.setByteStreamManager(byteStreamManager);
        digitalObjectManager.moveDataToStorage(object);
View Full Code Here

Examples of fr.valhalla.mailcheck.utils.EncryptedProperties.store()

                    props.load(in);
                    in.close();
                } catch (FileNotFoundException e) {
                    // Le fichier n'existe pas : on le crée
                    try {
                        props.store(new FileOutputStream(new File("fr.valhalla.mailcheck.accounts.properties")), null);
                    } catch (Exception e2) {
                        e2.printStackTrace();
                    }
                } catch (IOException e) {
                    e.printStackTrace();
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.