Package com.tmm.enterprise.microblog.domain

Examples of com.tmm.enterprise.microblog.domain.Person.addStatus()


  public void createStatus(String newStatus, String userName) {
    Account acc = accountService.loadAccountByUserName(userName);
    Person currentUser = acc.getUserProfile();
    if (currentUser != null) {
      Status s = new Status(currentUser, newStatus);
      currentUser.addStatus(s);
      statusDao.persist(s);
    }
  }

}
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.