Merge "Add owner username to gerrit query command."

This commit is contained in:
Jenkins 2011-11-08 23:48:34 +00:00 committed by Gerrit Code Review
commit e79f3475c5
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;
}