All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bitpay.sdk.logger.BitPayLogger Maven / Gradle / Ivy

Go to download

Full implementation of the BitPay Payment Gateway. This library implements BitPay's Cryptographically Secure RESTful API.

The newest version!
/*
 * Copyright (c) 2019 BitPay.
 * All rights reserved.
 */

package com.bitpay.sdk.logger;

public interface BitPayLogger {

    void logRequest(
        String method,
        String endpoint,
        String json
    );

    void logResponse(
        String method,
        String endpoint,
        String json
    );

    void logError(String message);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy