MediaTypes.java

package au.com.mountainpass.hyperstate.core;

import org.springframework.http.MediaType;

public class MediaTypes {

    public static final String SIREN_JSON_VALUE = "application/vnd.siren+json";

    public static final MediaType SIREN_JSON = MediaType
            .valueOf(SIREN_JSON_VALUE);

}