Package com.nimbusds.oauth2.sdk.util
Class ContentTypeUtils
java.lang.Object
com.nimbusds.oauth2.sdk.util.ContentTypeUtils
Content type matching.
-
Method Summary
Modifier and TypeMethodDescriptionstatic voidensureContentType(com.nimbusds.common.contenttype.ContentType expected, com.nimbusds.common.contenttype.ContentType found) Ensures the content type of an HTTP header matches an expected value.
-
Method Details
-
ensureContentType
public static void ensureContentType(com.nimbusds.common.contenttype.ContentType expected, com.nimbusds.common.contenttype.ContentType found) throws ParseException Ensures the content type of an HTTP header matches an expected value. Note that this method compares only the primary type and subtype; any content type parameters, such ascharset, are ignored.- Parameters:
expected- The expected content type. Must not benull.found- The found content type. May benull.- Throws:
ParseException- If the found content type isnullor it primary and subtype and doesn't match the expected.
-