com.microsoft.azure.proton.transport.proxy.impl.Constants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qpid-proton-j-extensions Show documentation
Show all versions of qpid-proton-j-extensions Show documentation
Extensions on Apache Proton-J library
package com.microsoft.azure.proton.transport.proxy.impl;
import java.util.Locale;
class Constants {
static final String PROXY_AUTHENTICATE_HEADER = "Proxy-Authenticate:";
static final String PROXY_AUTHORIZATION = "Proxy-Authorization";
static final String DIGEST = "Digest";
static final String BASIC = "Basic";
static final String BASIC_LOWERCASE = Constants.BASIC.toLowerCase(Locale.ROOT);
static final String DIGEST_LOWERCASE = Constants.DIGEST.toLowerCase(Locale.ROOT);
static final String CONNECT = "CONNECT";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy