| org.sakaiproject.portal.api.PortalHandler
All known Subclasses: org.sakaiproject.portal.charon.handlers.BasePortalHandler,
PortalHandler | public interface PortalHandler (Code) | | Tools that want to add handlers into the portal URL space may impliment this
interface. The once injected into the portal the portal will invoke the
register and deregister methods as part of the life cycle.
author: ieb since: Sakai 2.4 version: $Rev: 29143 $ |
Field Summary | |
final public static int | ABORT | final public static int | END | final public static int | NEXT | final public static int | RESET_DONE |
ABORT | final public static int ABORT(Code) | | Return codes, stop processing immediately
|
END | final public static int END(Code) | | Stop processing
|
NEXT | final public static int NEXT(Code) | | try next handler
|
RESET_DONE | final public static int RESET_DONE(Code) | | stop processing and mark reset as done
|
deregister | void deregister(Portal portal)(Code) | | deregister the the portal, invoked by the portal
Parameters: portal - |
getUrlFragment | String getUrlFragment()(Code) | | get the fragment of the URL that represents part[1] and is used to
register the handler in the portal.
|
register | void register(Portal portal, PortalService portalService, ServletContext servletContext)(Code) | | register this handler with the portal, invoked by the portal
Parameters: portal - Parameters: portalService - Parameters: servletContext - |
|
|