Esempio n. 1
0
 /**
  * Creates a new membershipUser in the system. Users created in this manner may login to the
  * system.
  *
  * @param userName
  * @param password
  * @return
  */
 public int registerMember(String userName, String password) {
   blackboard.startTransaction();
   int membershipId = blackboard.getMembershipBoard().registerMember(userName, password);
   blackboard.commitTransaction();
   return membershipId;
 }