1
0
mirror of https://github.com/google/nomulus synced 2026-01-11 00:10:36 +00:00

Change GenerateEscrowDepositCommand to trigger back end deposit generation

Previously, GenerateEscrowDepositCommand generated the deposit itself. Channeling it through the existing deposit generation code make things more maintainable.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=152847950
This commit is contained in:
mountford
2017-04-11 12:53:07 -07:00
committed by Ben McIlwain
parent 8653d2f204
commit dea386d08a
7 changed files with 224 additions and 367 deletions

View File

@@ -40,11 +40,11 @@ import org.joda.time.DateTime;
@Module
public final class RdeModule {
static final String PARAM_WATERMARK = "watermark";
static final String PARAM_MANUAL = "manual";
static final String PARAM_DIRECTORY = "directory";
static final String PARAM_MODE = "mode";
static final String PARAM_REVISION = "revision";
public static final String PARAM_WATERMARK = "watermark";
public static final String PARAM_MANUAL = "manual";
public static final String PARAM_DIRECTORY = "directory";
public static final String PARAM_MODE = "mode";
public static final String PARAM_REVISION = "revision";
@Provides
@Parameter(PARAM_WATERMARK)