Package com.tmm.enterprise.microblog.domain

Examples of com.tmm.enterprise.microblog.domain.TicketUpdate


    }

    if (body != null && !"".equals(body.trim())) {
      Account acc = accountService.loadAccountByUserName(userName);
      Person currentUser = acc.getUserProfile();
      TicketUpdate update = new TicketUpdate();
      update.setDetails(body);
      update.setTicket(wt);
      update.setRaisedBy(currentUser);
      update.setAssignedTo(wt.getRaisedBy());
      wt.addUpdate(update);
      entityManager.persist(update);
    }
  }
View Full Code Here

TOP

Related Classes of com.tmm.enterprise.microblog.domain.TicketUpdate

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.