#ifndef TOOLS_PA_SIGNER_SRC_JARCERTIFICATE_H_
#define TOOLS_PA_SIGNER_SRC_JARCERTIFICATE_H_

#include <string>

#include "ProcessCertificate.h"


class JarCertificate: public ProcessCertificate {
public:
  JarCertificate(
      const std::string& jar_path,
      const std::string& b64_five_signature,
      long key_id);
};

#endif /* TOOLS_PA_SIGNER_SRC_JARCERTIFICATE_H_ */
