Uses of Interface
org.sakaiproject.entitybroker.access.EntityViewAccessProvider
-
Packages that use EntityViewAccessProvider Package Description org.sakaiproject.entitybroker.access org.sakaiproject.entitybroker.entityprovider.capabilities -
-
Uses of EntityViewAccessProvider in org.sakaiproject.entitybroker.access
Subinterfaces of EntityViewAccessProvider in org.sakaiproject.entitybroker.access Modifier and Type Interface Description interfaceAccessFormatsIndicates that entity requests can be handled for certain formats which are indicated
NOTE: By default all entity view requests go through to the available access providers:EntityViewAccessProviderorHttpServletAccessProviderif nothing is specified here or this interface is not implementedinterfaceAccessViewsIndicates that entity requests can be handled for certain views which are indicated
NOTE: By default all entity view requests go through to the available access providers:EntityViewAccessProviderorHttpServletAccessProviderif nothing is specified here or this interface is not implementedMethods in org.sakaiproject.entitybroker.access that return EntityViewAccessProvider Modifier and Type Method Description EntityViewAccessProviderEntityViewAccessProviderManager. getProvider(String prefix)Get an entity view access provider for a prefix if one existsMethods in org.sakaiproject.entitybroker.access with parameters of type EntityViewAccessProvider Modifier and Type Method Description voidEntityViewAccessProviderManager. registerProvider(String prefix, EntityViewAccessProvider provider)Register a provider as handling entity view requests and delivering responses -
Uses of EntityViewAccessProvider in org.sakaiproject.entitybroker.entityprovider.capabilities
Subinterfaces of EntityViewAccessProvider in org.sakaiproject.entitybroker.entityprovider.capabilities Modifier and Type Interface Description interfaceRequestHandlerIndicates that this entity provider will handle its own entity view requests, this would be very unusual but it allows the entity provider itself to redirect requests to a tool and normally would be used if there is some special circumstance only
WARNING: This will be called before any other request handling and before the access provider is called and will cause all other processing to be skipped (includes REST calls, custom actions, formatting, etc.)
NOTE: if you want to stop certain requests from coming through then a better option is to useRequestInterceptorwhich is triggered just before this would be called
-