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

com.icoderman.woocommerce.oauth.SignatureMethod Maven / Gradle / Ivy

There is a newer version: 1.4
Show newest version
package com.icoderman.woocommerce.oauth;

/**
 * SignatureMethod class.
 * Signs a OAuth base string, returning the OAuth signature value.
 */
public interface SignatureMethod {

    /**
     * Returns the signature
     *
     * @param baseString  url-encoded string to sign
     * @param apiSecret   url-encoded api secret for your app
     * @param tokenSecret url-encoded token secret (could be empty string)
     * @return signature value
     */
    String getSignature(String baseString, String apiSecret, String tokenSecret);

    SignatureMethodType getSignatureMethodType();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy