Package com.google.gerrit.server.account

Examples of com.google.gerrit.server.account.PerformCreateGroup


  }

  @Override
  public AccountGroup.Id call() throws OrmException, NameAlreadyUsedException,
      PermissionDeniedException {
    final PerformCreateGroup performCreateGroup = performCreateGroupFactory.create();
    final Account.Id me = user.getAccountId();
    return performCreateGroup.createGroup(groupName, null, false, null, Collections.singleton(me), null);
  }
View Full Code Here

TOP

Related Classes of com.google.gerrit.server.account.PerformCreateGroup

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.