Merge "StreamEvents: Correctly serialize Project.NameKey elements in json"
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
// Copyright (C) 2016 The Android Open Source Project
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
package com.google.gerrit.server.events;
|
||||
|
||||
import com.google.gerrit.reviewdb.client.Project;
|
||||
import com.google.gson.JsonElement;
|
||||
import com.google.gson.JsonPrimitive;
|
||||
import com.google.gson.JsonSerializationContext;
|
||||
import com.google.gson.JsonSerializer;
|
||||
|
||||
import java.lang.reflect.Type;
|
||||
|
||||
public class ProjectNameKeySerializer
|
||||
implements JsonSerializer<Project.NameKey> {
|
||||
@Override
|
||||
public JsonElement serialize(Project.NameKey project, Type typeOfSrc,
|
||||
JsonSerializationContext context) {
|
||||
return new JsonPrimitive(project.get());
|
||||
}
|
||||
}
|
@@ -22,10 +22,12 @@ import com.google.gerrit.common.data.GlobalCapability;
|
||||
import com.google.gerrit.extensions.annotations.RequiresCapability;
|
||||
import com.google.gerrit.extensions.registration.DynamicSet;
|
||||
import com.google.gerrit.extensions.registration.RegistrationHandle;
|
||||
import com.google.gerrit.reviewdb.client.Project;
|
||||
import com.google.gerrit.server.CurrentUser;
|
||||
import com.google.gerrit.server.IdentifiedUser;
|
||||
import com.google.gerrit.server.events.Event;
|
||||
import com.google.gerrit.server.events.EventTypes;
|
||||
import com.google.gerrit.server.events.ProjectNameKeySerializer;
|
||||
import com.google.gerrit.server.events.SupplierSerializer;
|
||||
import com.google.gerrit.server.git.WorkQueue;
|
||||
import com.google.gerrit.server.git.WorkQueue.CancelableRunnable;
|
||||
@@ -160,6 +162,8 @@ final class StreamEvents extends BaseCommand {
|
||||
|
||||
gson = new GsonBuilder()
|
||||
.registerTypeAdapter(Supplier.class, new SupplierSerializer())
|
||||
.registerTypeAdapter(
|
||||
Project.NameKey.class, new ProjectNameKeySerializer())
|
||||
.create();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user