blob: acc40cb46197eebea97cc1a8b7581597ab3bd587 [file] [log] [blame]
// Copyright (C) 2024 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.googlesource.gerrit.plugins.replication.pull.api;
import com.google.gerrit.entities.Project;
import com.google.inject.Inject;
import com.google.inject.assistedinject.Assisted;
import com.googlesource.gerrit.plugins.replication.pull.api.FetchAction.BatchInput;
public class DeleteRefJob implements Runnable {
public interface Factory {
DeleteRefJob create(Project.NameKey project, BatchInput input);
}
private final DeleteRefCommand command;
private final Project.NameKey project;
private final BatchInput batchInput;
@Inject
public DeleteRefJob(
DeleteRefCommand command,
@Assisted Project.NameKey project,
@Assisted BatchInput batchInput) {
this.command = command;
this.project = project;
this.batchInput = batchInput;
}
@Override
public void run() {
command.deleteRefsSync(project, batchInput.getDeletedRefNames(), batchInput.label);
}
}