All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.jasminb.jsonapi.JSONAPISpecConstants Maven / Gradle / Ivy

Go to download

JSONAPI-Converter is a library that provides means for integrating with services using JSON API specification.

There is a newer version: 0.14
Show newest version
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