Uses of Interface
org.sakaiproject.entitybroker.entityprovider.capabilities.Redirectable
-
Packages that use Redirectable Package Description org.sakaiproject.entitybroker.entityprovider.capabilities -
-
Uses of Redirectable in org.sakaiproject.entitybroker.entityprovider.capabilities
Subinterfaces of Redirectable in org.sakaiproject.entitybroker.entityprovider.capabilities Modifier and Type Interface Description interfaceRedirectControllableThis entity type has the ability to define and handle configurable URLs
This adds the ability to control all redirects via a central method
URLs like this can be handled and supported:
/gradebook/7890/student/70987 to view all the grades for a student from a course
/gradebook/6758/item/Quiz1 to view a particular item in a gradebook by it's human readable name
/gradebook/item/6857657 to maybe just a view an item by its unique id.interfaceRedirectDefinableThis entity type has the ability to define and handle configurable URLs
This adds the ability to supply a large set of simple redirects
URLs like this can be handled and supported:
/gradebook/7890/student/70987 to view all the grades for a student from a course
/gradebook/6758/item/Quiz1 to view a particular item in a gradebook by it's human readable name
/gradebook/item/6857657 to maybe just a view an item by its unique id.interfaceRESTfulIndicates that entities handled by this provider are RESTful as defined by the REST microformat:
http://microformats.org/wiki/rest/urls
Requires all CRUD functionality, Collection handling, HTML handling, and ability to support output formats
This is mostly a convenience interface to make sure that everything needed to support REST has been implemented, it also includes the marker to indicate that RESTful URLs should work for entities of this type
-