com.github.jasminb.jsonapi.JSONAPISpecConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsonapi-converter Show documentation
Show all versions of jsonapi-converter Show documentation
JSONAPI-Converter is a library that provides means for integrating with services using JSON API specification.
package com.github.jasminb.jsonapi;
/**
* JSON API Spec resource constants.
*
* @author jbegic
*/
public interface JSONAPISpecConstants {
String DATA = "data";
String ATTRIBUTES = "attributes";
String TYPE = "type";
String ID = "id";
String RELATIONSHIPS = "relationships";
String INCLUDED = "included";
String LINKS = "links";
String SELF = "self";
String RELATED = "related";
String ERRORS = "errors";
String META = "meta";
String HREF = "href";
String PREV = "prev";
String NEXT = "next";
String FIRST = "first";
String LAST = "last";
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy