Package jnode.dto

Examples of jnode.dto.EchomailAwaiting


    @Override
    public void post(Auth auth, Echomail echomail) {
        echomailDao.save(echomail);
        for (Subscription s : ORMManager.get(Subscription.class).getAnd(
                "echoarea_id", "=", echomail.getArea())) {
            ORMManager.get(EchomailAwaiting.class).save(new EchomailAwaiting(s.getLink(), echomail));
        }
    }
View Full Code Here


    ORMManager.get(Echomail.class).save(mail);
    if (mail.getId() != null) {
      for (Subscription s : ORMManager.get(Subscription.class).getAnd(
          "echoarea_id", "=", area)) {
        ORMManager.get(EchomailAwaiting.class).save(
            new EchomailAwaiting(s.getLink(), mail));
      }
    }
  }
View Full Code Here

TOP

Related Classes of jnode.dto.EchomailAwaiting

Copyright © 2018 www.massapicom. 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.