Class MyProfilRequestRouter
- java.lang.Object
-
- javax.servlet.GenericServlet
-
- javax.servlet.http.HttpServlet
-
- org.silverpeas.core.web.mvc.webcomponent.SilverpeasHttpServlet
-
- org.silverpeas.core.web.mvc.webcomponent.SilverpeasAuthenticatedHttpServlet
-
- org.silverpeas.core.web.mvc.route.ComponentRequestRouter<MyProfilSessionController>
-
- org.silverpeas.web.socialnetwork.myprofil.servlets.MyProfilRequestRouter
-
- All Implemented Interfaces:
Serializable
,javax.servlet.Servlet
,javax.servlet.ServletConfig
public class MyProfilRequestRouter extends ComponentRequestRouter<MyProfilSessionController>
- Author:
- azzedine
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.silverpeas.core.web.mvc.webcomponent.SilverpeasHttpServlet
SilverpeasHttpServlet.HttpError, SilverpeasHttpServlet.UserSessionStatus
-
-
Constructor Summary
Constructors Constructor Description MyProfilRequestRouter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MyProfilSessionController
createComponentSessionController(MainSessionController mainSessionCtrl, ComponentContext componentContext)
String
getDestination(String function, MyProfilSessionController myProfilSC, HttpRequest request)
This method has to be implemented by the component request Router it has to compute a destination pageString
getSessionControlBeanName()
This method has to be implemented in the component request Router class. returns the session control bean name to be put in the request object ex : for almanach, returns "almanach"protected String
saveAvatar(HttpRequest request, String nameAvatar)
method to change profile Photo-
Methods inherited from class org.silverpeas.core.web.mvc.route.ComponentRequestRouter
checkUserAuthorization, doGet, doPost, emptyJsonResponse, getComponentId, getOrganizationController, hasTheSessionSecurityTokenToBeRenewed, sendJson, updateSessionManagement
-
Methods inherited from class org.silverpeas.core.web.mvc.webcomponent.SilverpeasAuthenticatedHttpServlet
getMainSessionController, getSessionInfo, getSynchronizerTokenService, renewSessionSecurityToken, service, throwUserSessionExpiration
-
Methods inherited from class org.silverpeas.core.web.mvc.webcomponent.SilverpeasHttpServlet
existOpenedUserSession, forbidden, notFound, preconditionFailed, redirectOrForwardService, sendError, sendError, throwHttpForbiddenError, throwHttpForbiddenError, throwHttpNotFoundError, throwHttpNotFoundError, throwHttpPreconditionFailedError, throwHttpPreconditionFailedError
-
Methods inherited from class javax.servlet.http.HttpServlet
doDelete, doHead, doOptions, doPut, doTrace, getLastModified, service
-
-
-
-
Method Detail
-
getSessionControlBeanName
public String getSessionControlBeanName()
Description copied from class:ComponentRequestRouter
This method has to be implemented in the component request Router class. returns the session control bean name to be put in the request object ex : for almanach, returns "almanach"- Specified by:
getSessionControlBeanName
in classComponentRequestRouter<MyProfilSessionController>
- Returns:
- the name of the session controller.
-
createComponentSessionController
public MyProfilSessionController createComponentSessionController(MainSessionController mainSessionCtrl, ComponentContext componentContext)
- Specified by:
createComponentSessionController
in classComponentRequestRouter<MyProfilSessionController>
-
getDestination
public String getDestination(String function, MyProfilSessionController myProfilSC, HttpRequest request)
Description copied from class:ComponentRequestRouter
This method has to be implemented by the component request Router it has to compute a destination page- Specified by:
getDestination
in classComponentRequestRouter<MyProfilSessionController>
- Parameters:
function
-myProfilSC
-request
-- Returns:
- String
-
saveAvatar
protected String saveAvatar(HttpRequest request, String nameAvatar) throws UtilException
method to change profile Photo- Parameters:
request
-nameAvatar
-- Returns:
- String
- Throws:
UtilException
-
-