priam/src/main/java/com/netflix/priam/restore/EncryptedRestoreStrategy.java [49:81]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            Sleeper sleeper,
            @Named("filecryptoalgorithm") IFileCryptography fileCryptography,
            @Named("pgpcredential") ICredentialGeneric credential,
            ICompression compress,
            Provider<AbstractBackupPath> pathProvider,
            InstanceIdentity id,
            RestoreTokenSelector tokenSelector,
            MetaData metaData,
            InstanceState instanceState,
            IPostRestoreHook postRestoreHook) {

        super(
                config,
                fs,
                JOBNAME,
                sleeper,
                cassProcess,
                pathProvider,
                id,
                tokenSelector,
                credential,
                fileCryptography,
                compress,
                metaData,
                instanceState,
                postRestoreHook);
    }

    /*
     * @return a timer used by the scheduler to determine when "this" should be run.
     */
    public static TaskTimer getTimer() {
        return new SimpleTimer(JOBNAME);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



priam/src/main/java/com/netflix/priam/restore/GoogleCryptographyRestoreStrategy.java [47:76]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            Sleeper sleeper,
            @Named("filecryptoalgorithm") IFileCryptography fileCryptography,
            @Named("pgpcredential") ICredentialGeneric credential,
            ICompression compress,
            Provider<AbstractBackupPath> pathProvider,
            InstanceIdentity id,
            RestoreTokenSelector tokenSelector,
            MetaData metaData,
            InstanceState instanceState,
            IPostRestoreHook postRestoreHook) {
        super(
                config,
                fs,
                JOBNAME,
                sleeper,
                cassProcess,
                pathProvider,
                id,
                tokenSelector,
                credential,
                fileCryptography,
                compress,
                metaData,
                instanceState,
                postRestoreHook);
    }

    /** @return a timer used by the scheduler to determine when "this" should be run. */
    public static TaskTimer getTimer() {
        return new SimpleTimer(JOBNAME);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



