Package org.fcrepo.kernel.api.rdf
Interface LdpTriplePreferences
-
- All Known Implementing Classes:
LdpPreferTag
public interface LdpTriplePreferences
Kernel level API to hold the LdpPreferTag and internal logic decisions.- Since:
- 6.0.0
- Author:
- whikloj
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
LdpTriplePreferences.PreferChoice
What the prefer tag choice is.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
displayContainment()
boolean
displayEmbed()
boolean
displayMembership()
boolean
displayReferences()
boolean
displayServerManaged()
boolean
displayUserRdf()
-
-
-
Method Detail
-
displayUserRdf
boolean displayUserRdf()
- Returns:
- Whether to display user rdf based on this preference tag and internal defaults.
-
displayMembership
boolean displayMembership()
- Returns:
- Whether to display membership triples based on this preference tag and internal defaults.
-
displayContainment
boolean displayContainment()
- Returns:
- Whether to display containment triples based on this preference tag and internal defaults.
-
displayReferences
boolean displayReferences()
- Returns:
- Whether to display inbound reference triples based on this preference tag and internal defaults.
-
displayEmbed
boolean displayEmbed()
- Returns:
- Whether to display contained resources' triples based on this preference tag and internal defaults.
-
displayServerManaged
boolean displayServerManaged()
- Returns:
- Whether to display server managed triples based on this preference tag and internal defaults.
-
-