Class NoOpPinotCrypter

  • All Implemented Interfaces:
    PinotCrypter

    public class NoOpPinotCrypter
    extends Object
    implements PinotCrypter
    This class is the default implementation for the PinotCrypter. It is a noop crypter and will not do any operations.
    • Field Detail

      • LOGGER

        public static final org.slf4j.Logger LOGGER
    • Constructor Detail

      • NoOpPinotCrypter

        public NoOpPinotCrypter()
    • Method Detail

      • encrypt

        public void encrypt​(File decryptedFile,
                            File encryptedFile)
        Description copied from interface: PinotCrypter
        Encrypts the file into the file location provided. The implementation should clean up file after any failures.
        Specified by:
        encrypt in interface PinotCrypter
      • decrypt

        public void decrypt​(File encryptedFile,
                            File decryptedFile)
        Description copied from interface: PinotCrypter
        Decrypts file into file location provided. The implementation should clean up file after any failures.
        Specified by:
        decrypt in interface PinotCrypter