コード例 #1
0
ファイル: UserManager.java プロジェクト: LemonKL/gitblit
 /**
  * Updates/writes and replaces a complete team object keyed by teamname. This method allows for
  * renaming a team.
  *
  * @param teamname the old teamname
  * @param model the team object to use for teamname
  * @return true if update is successful
  * @since 0.8.0
  */
 @Override
 public boolean updateTeamModel(String teamname, TeamModel model) {
   final boolean isCreate = null == userService.getTeamModel(teamname);
   if (userService.updateTeamModel(teamname, model)) {
     if (isCreate) {
       callCreateTeamListeners(model);
     }
     return true;
   }
   return false;
 }