mirror of
https://github.com/google/nomulus.git
synced 2025-04-30 20:17:51 +02:00
The old DNS processing was performed by WriteDnsAction, which was invoked by the standard cron fanout action. The new code, which has been running for several months in production, uses ReadDnsQueueAction to do a custom fanout to PublishDnsUpdatesAction. We no longer need the old code, so it's time to remove it. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=127983115
113 lines
4.9 KiB
Java
113 lines
4.9 KiB
Java
// Copyright 2016 The Domain Registry Authors. All Rights Reserved.
|
|
//
|
|
// 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 google.registry.module.backend;
|
|
|
|
import dagger.Subcomponent;
|
|
import google.registry.backup.BackupModule;
|
|
import google.registry.backup.CommitLogCheckpointAction;
|
|
import google.registry.backup.DeleteOldCommitLogsAction;
|
|
import google.registry.backup.ExportCommitLogDiffAction;
|
|
import google.registry.backup.RestoreCommitLogsAction;
|
|
import google.registry.billing.ExpandRecurringBillingEventsAction;
|
|
import google.registry.cron.CommitLogFanoutAction;
|
|
import google.registry.cron.CronModule;
|
|
import google.registry.cron.TldFanoutAction;
|
|
import google.registry.dns.DnsModule;
|
|
import google.registry.dns.PublishDnsUpdatesAction;
|
|
import google.registry.dns.ReadDnsQueueAction;
|
|
import google.registry.dns.RefreshDnsAction;
|
|
import google.registry.export.BigqueryPollJobAction;
|
|
import google.registry.export.ExportDomainListsAction;
|
|
import google.registry.export.ExportRequestModule;
|
|
import google.registry.export.ExportReservedTermsAction;
|
|
import google.registry.export.LoadSnapshotAction;
|
|
import google.registry.export.SyncGroupMembersAction;
|
|
import google.registry.export.UpdateSnapshotViewAction;
|
|
import google.registry.export.sheet.SheetModule;
|
|
import google.registry.export.sheet.SyncRegistrarsSheetAction;
|
|
import google.registry.flows.async.AsyncFlowsModule;
|
|
import google.registry.flows.async.DeleteContactResourceAction;
|
|
import google.registry.flows.async.DeleteHostResourceAction;
|
|
import google.registry.flows.async.DnsRefreshForHostRenameAction;
|
|
import google.registry.mapreduce.MapreduceModule;
|
|
import google.registry.monitoring.whitebox.MetricsExportAction;
|
|
import google.registry.monitoring.whitebox.VerifyEntityIntegrityAction;
|
|
import google.registry.monitoring.whitebox.WhiteboxModule;
|
|
import google.registry.rde.BrdaCopyAction;
|
|
import google.registry.rde.RdeModule;
|
|
import google.registry.rde.RdeReportAction;
|
|
import google.registry.rde.RdeReporter;
|
|
import google.registry.rde.RdeStagingAction;
|
|
import google.registry.rde.RdeUploadAction;
|
|
import google.registry.request.RequestModule;
|
|
import google.registry.request.RequestScope;
|
|
import google.registry.tmch.NordnUploadAction;
|
|
import google.registry.tmch.NordnVerifyAction;
|
|
import google.registry.tmch.TmchCrlAction;
|
|
import google.registry.tmch.TmchDnlAction;
|
|
import google.registry.tmch.TmchModule;
|
|
import google.registry.tmch.TmchSmdrlAction;
|
|
|
|
/** Dagger component with per-request lifetime for "backend" App Engine module. */
|
|
@RequestScope
|
|
@Subcomponent(
|
|
modules = {
|
|
AsyncFlowsModule.class,
|
|
BackendModule.class,
|
|
BackupModule.class,
|
|
CronModule.class,
|
|
DnsModule.class,
|
|
ExportRequestModule.class,
|
|
MapreduceModule.class,
|
|
RdeModule.class,
|
|
RequestModule.class,
|
|
SheetModule.class,
|
|
TmchModule.class,
|
|
WhiteboxModule.class,
|
|
})
|
|
interface BackendRequestComponent {
|
|
BigqueryPollJobAction bigqueryPollJobAction();
|
|
BrdaCopyAction brdaCopyAction();
|
|
CommitLogCheckpointAction commitLogCheckpointAction();
|
|
CommitLogFanoutAction commitLogFanoutAction();
|
|
DeleteContactResourceAction deleteContactResourceAction();
|
|
DeleteHostResourceAction deleteHostResourceAction();
|
|
DeleteOldCommitLogsAction deleteOldCommitLogsAction();
|
|
DnsRefreshForHostRenameAction dnsRefreshForHostRenameAction();
|
|
ExpandRecurringBillingEventsAction expandRecurringBillingEventsAction();
|
|
ExportCommitLogDiffAction exportCommitLogDiffAction();
|
|
ExportDomainListsAction exportDomainListsAction();
|
|
ExportReservedTermsAction exportReservedTermsAction();
|
|
LoadSnapshotAction loadSnapshotAction();
|
|
MetricsExportAction metricsExportAction();
|
|
NordnUploadAction nordnUploadAction();
|
|
NordnVerifyAction nordnVerifyAction();
|
|
PublishDnsUpdatesAction publishDnsUpdatesAction();
|
|
ReadDnsQueueAction readDnsQueueAction();
|
|
RdeReportAction rdeReportAction();
|
|
RdeStagingAction rdeStagingAction();
|
|
RdeUploadAction rdeUploadAction();
|
|
RdeReporter rdeReporter();
|
|
RefreshDnsAction refreshDnsAction();
|
|
RestoreCommitLogsAction restoreCommitLogsAction();
|
|
SyncGroupMembersAction syncGroupMembersAction();
|
|
SyncRegistrarsSheetAction syncRegistrarsSheetAction();
|
|
TldFanoutAction tldFanoutAction();
|
|
TmchCrlAction tmchCrlAction();
|
|
TmchDnlAction tmchDnlAction();
|
|
TmchSmdrlAction tmchSmdrlAction();
|
|
UpdateSnapshotViewAction updateSnapshotViewAction();
|
|
VerifyEntityIntegrityAction verifyEntityIntegrityAction();
|
|
}
|