Class ContentTypeUtils

java.lang.Object
com.nimbusds.oauth2.sdk.util.ContentTypeUtils

public final class ContentTypeUtils extends Object
Content type matching.
  • 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 as charset, are ignored.
      Parameters:
      expected - The expected content type. Must not be null.
      found - The found content type. May be null.
      Throws:
      ParseException - If the found content type is null or it primary and subtype and doesn't match the expected.