Add owner username to gerrit query command.

Change-Id: Iec0a2adfdf6c4a2dd9a94dc327b68f836b59da59
This commit is contained in:
James E. Blair 2011-11-08 14:52:32 -08:00
parent 1e35b2096f
commit bf47a9665f
2 changed files with 2 additions and 0 deletions

View File

@ -17,4 +17,5 @@ package com.google.gerrit.server.events;
public class AccountAttribute {
public String name;
public String email;
public String username;
}

View File

@ -196,6 +196,7 @@ public class EventFactory {
AccountAttribute who = new AccountAttribute();
who.name = account.getFullName();
who.email = account.getPreferredEmail();
who.username = account.getUserName();
return who;
}