Merge pull request #28369 from izeye
* pr/28369: Add Javadoc since for GraphQL constants Closes gh-28369
This commit is contained in:
commit
46b0d7dc03
|
@ -67,18 +67,20 @@ public abstract class MimeTypeUtils {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Public constant mime type for {@code application/graphql+json}.
|
* 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>
|
* @see <a href="https://github.com/graphql/graphql-over-http">GraphQL over HTTP spec</a>
|
||||||
* */
|
*/
|
||||||
public static final MimeType APPLICATION_GRAPHQL;
|
public static final MimeType APPLICATION_GRAPHQL;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A String equivalent of {@link MimeTypeUtils#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 static final String APPLICATION_GRAPHQL_VALUE = "application/graphql+json";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Public constant mime type for {@code application/json}.
|
* Public constant mime type for {@code application/json}.
|
||||||
* */
|
*/
|
||||||
public static final MimeType APPLICATION_JSON;
|
public static final MimeType APPLICATION_JSON;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -97,12 +97,14 @@ public class MediaType extends MimeType implements Serializable {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Public constant media type for {@code application/graphql+json}.
|
* 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>
|
* @see <a href="https://github.com/graphql/graphql-over-http">GraphQL over HTTP spec</a>
|
||||||
*/
|
*/
|
||||||
public static final MediaType APPLICATION_GRAPHQL;
|
public static final MediaType APPLICATION_GRAPHQL;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A String equivalent of {@link 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";
|
public static final String APPLICATION_GRAPHQL_VALUE = "application/graphql+json";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue