Skip to content

Commit

Permalink
Add Javadoc since for GraphQL constants
Browse files Browse the repository at this point in the history
  • Loading branch information
izeye committed Apr 23, 2022
1 parent be7fa3a commit 1dcc3d0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Expand Up @@ -70,18 +70,20 @@ public abstract class MimeTypeUtils {

/**
* Public constant mime type for {@code application/graphql+json}.
* @since 5.3.19
* @see <a href="https://github.com/graphql/graphql-over-http">GraphQL over HTTP spec</a>
* */
*/
public static final MimeType APPLICATION_GRAPHQL;

/**
* A String equivalent of {@link MimeTypeUtils#APPLICATION_GRAPHQL}.
* @since 5.3.19
*/
public static final String APPLICATION_GRAPHQL_VALUE = "application/graphql+json";

/**
* Public constant mime type for {@code application/json}.
* */
*/
public static final MimeType APPLICATION_JSON;

/**
Expand Down
Expand Up @@ -97,12 +97,14 @@ public class MediaType extends MimeType implements Serializable {

/**
* Public constant media type for {@code application/graphql+json}.
* @since 5.3.19
* @see <a href="https://github.com/graphql/graphql-over-http">GraphQL over HTTP spec</a>
*/
public static final MediaType APPLICATION_GRAPHQL;

/**
* A String equivalent of {@link MediaType#APPLICATION_GRAPHQL}.
* @since 5.3.19
*/
public static final String APPLICATION_GRAPHQL_VALUE = "application/graphql+json";

Expand Down

0 comments on commit 1dcc3d0

Please sign in to comment.