Move event attribute classes to a separate package

The Attribute classes are moved from:

  com.google.gerrit.server.events

to the newly created package:

  com.google.gerrit.server.data

The `QueryStats` class is renamed to `QueryStatsAttribute` to be
consistent with the other classes in the package.

This is only a code reorganisation.  No functionality is changed.

Change-Id: I5c125e8d45d8f8e6943021cd90ddba1c364a103e
This commit is contained in:
David Pursehouse
2013-04-09 12:22:31 +09:00
committed by Edwin Kempin
parent 0f2e820677
commit c4d0a135fe
25 changed files with 67 additions and 19 deletions

View File

@@ -32,7 +32,7 @@ import com.google.gerrit.server.account.AccountState;
import com.google.gerrit.server.config.AnonymousCowardName;
import com.google.gerrit.server.config.GerritServerConfig;
import com.google.gerrit.server.config.SitePaths;
import com.google.gerrit.server.events.ApprovalAttribute;
import com.google.gerrit.server.data.ApprovalAttribute;
import com.google.gerrit.server.events.ChangeAbandonedEvent;
import com.google.gerrit.server.events.ChangeEvent;
import com.google.gerrit.server.events.ChangeMergedEvent;