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

@@ -14,6 +14,11 @@
package com.google.gerrit.server.events;
import com.google.gerrit.server.data.AccountAttribute;
import com.google.gerrit.server.data.ApprovalAttribute;
import com.google.gerrit.server.data.ChangeAttribute;
import com.google.gerrit.server.data.PatchSetAttribute;
public class CommentAddedEvent extends ChangeEvent {
public final String type = "comment-added";
public ChangeAttribute change;