NetworkGroup(
     final OwnerFullName ownerFullName, final String groupName, final String groupDescription) {
   this(ownerFullName, groupName);
   checkParam(groupDescription, notNullValue());
   this.description = groupDescription;
   this.groupId = Crypto.generateId(Integer.toHexString(groupName.hashCode()), "sg");
 }