001package org.w3.ldp.testsuite.http; 002 003import org.w3.ldp.testsuite.vocab.LDP; 004 005/** 006 * LDP Constants for use with the Prefer header. 007 * 008 * @see <a href="https://dvcs.w3.org/hg/ldpwg/raw-file/default/ldp.html#prefer-parameters">LDP 1.0: Prefer Parameters</a> 009 */ 010public interface LdpPreferences { 011 public static final String PREFERENCE_INCLUDE = "include"; 012 public static final String PREFERENCE_OMIT = "omit"; 013 public static final String PREFER_MINIMAL_CONTAINER = LDP.NAMESPACE + "PreferMinimalContainer"; 014 public static final String PREFER_CONTAINMENT = LDP.NAMESPACE + "PreferContainment"; 015 public static final String PREFER_MEMBERSHIP = LDP.NAMESPACE + "PreferMembership"; 016}