priam/src/main/java/com/netflix/priam/restore/EncryptedRestoreStrategy.java [45:75]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public EncryptedRestoreStrategy(
            final IConfiguration config,
            ICassandraProcess cassProcess,
            @Named("encryptedbackup") IBackupFileSystem fs,
            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);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



priam/src/main/java/com/netflix/priam/restore/GoogleCryptographyRestoreStrategy.java [43:72]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public GoogleCryptographyRestoreStrategy(
            final IConfiguration config,
            ICassandraProcess cassProcess,
            @Named("gcsencryptedbackup") IBackupFileSystem fs,
            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);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



