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

fun.feellmoose.constants.LinkParamConstants Maven / Gradle / Ivy

There is a newer version: 0.1.3
Show newest version
package fun.feellmoose.constants;

import java.math.BigInteger;
import java.util.Random;

public interface LinkParamConstants {
    String boundary = new BigInteger(256, new Random()).toString();
    String CODE = "code";
    String CODE_VERIFIER = "code_verifier";
    String GRANT_TYPE = "grant_type";
    String REDIRECT_URI = "redirect_uri";
    String CLIENT_ID = "client_id";
    String CLIENT_SECRET = "client_secret";
    String REFRESH_TOKEN = "refresh_token";
    String AUTHORIZATION = "Authorization";
    String CONTENT_TYPE = "Content-Type";
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy