Package com.liferay.application.list
Interface GroupProvider
public interface GroupProvider
Provides an interface that defines how a
Group (in
portal-kernel) associated with a servlet request is stored and
retrieved.-
Method Summary
Modifier and TypeMethodDescriptioncom.liferay.portal.kernel.model.GroupgetGroup(javax.servlet.http.HttpServletRequest httpServletRequest) Returns theGroupassociated with the request.voidsetGroup(javax.servlet.http.HttpServletRequest httpServletRequest, com.liferay.portal.kernel.model.Group group) Sets theGroupto associate with the request.
-
Method Details
-
getGroup
com.liferay.portal.kernel.model.Group getGroup(javax.servlet.http.HttpServletRequest httpServletRequest) Returns theGroupassociated with the request.- Parameters:
httpServletRequest- the servlet request used to retrieve the group- Returns:
- the
Groupassociated with the request
-
setGroup
void setGroup(javax.servlet.http.HttpServletRequest httpServletRequest, com.liferay.portal.kernel.model.Group group) Sets theGroupto associate with the request.- Parameters:
httpServletRequest- the servlet request used to associate theGroupgroup- theGroupto associate with the request
-