Examples of Angebot


Examples of com.camunda.fox.example.versicherung.entity.Angebot

 
  @Inject
  private BusinessProcess businessProcess;
 
  public void angebotErstellen() {
    Angebot angebot = new Angebot();
    angebot.setFirstname((String) businessProcess.getVariable("vorname"));
    angebot.setLastname((String) businessProcess.getVariable("nachname"));   
    // berechne Monatsbeitrag
    // (Hey, vielleicht sogar mit JBoss Drools!)
    BigDecimal montasbeitrag = new BigDecimal(100);   
    angebot.setMonatsbeitrag(montasbeitrag);
   
    em.persist(angebot)
    em.flush();
    businessProcess.setVariable("angebotsId", angebot.getId());
  }
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.