Uses of Class
com.hack23.cia.model.application.impl.common.UserSession

Packages that use UserSession
com.hack23.cia.model.application.dto Data transfer objects, created in service layer used in web layer. 
com.hack23.cia.model.application.impl.admin Admin user action events entity model. 
com.hack23.cia.model.application.impl.common Common application entity model. 
com.hack23.cia.model.application.impl.user User action events entity model. 
com.hack23.cia.service.api.common Service API common request/response objects. 
com.hack23.cia.service.impl.admin Admin service implementations. 
com.hack23.cia.service.impl.application Application service implementations. 
com.hack23.cia.service.impl.common Common service implementations. 
com.hack23.cia.service.impl.user User service implementations. 
com.hack23.cia.web.views.form.admin Admin Forms for objects in the model. 
 

Uses of UserSession in com.hack23.cia.model.application.dto
 

Methods in com.hack23.cia.model.application.dto that return UserSession
 UserSession UserSessionDTO.getUserSession()
          Gets the user session.
 

Constructors in com.hack23.cia.model.application.dto with parameters of type UserSession
UserSessionDTO(UserSession userSession)
          Instantiates a new user session dto.
 

Uses of UserSession in com.hack23.cia.model.application.impl.admin
 

Constructors in com.hack23.cia.model.application.impl.admin with parameters of type UserSession
AbstractAdminActionEvent(Date createdDate, UserSession userSession)
          Instantiates a new abstract admin action event.
AbstractAgencyActionEvent(Date createdDate, UserSession userSession, Long agencyId)
          Instantiates a new abstract agency action event.
AbstractConfigurationActionEvent(Date createdDate, UserSession userSession)
          Instantiates a new abstract configuration action event.
AbstractSoftwareAgentActionEvent(Date createdDate, UserSession userSession)
          Instantiates a new abstract software agent action event.
AgencyActionEvent(Date createdDate, UserSession userSession, AgencyActionEvent.Operation operation, Long agencyId)
          Instantiates a new agency action event.
AgentDeploymentActionEvent(Date createdDate, UserSession userSession)
          Instantiates a new agent deployment action event.
AgentOperationActionEvent(Date createdDate, UserSession userSession)
          Instantiates a new agent operation action event.
LanguageAgencyActionEvent(Date createdDate, UserSession userSession, Long agencyId, Long languageId, LanguageAgencyActionEvent.Operation operation)
          Instantiates a new language agency action event.
LanguageContentActionEvent(Date createdDate, UserSession userSession, Long agencyId, Long languageContentId, LanguageContentActionEvent.Operation operation)
          Instantiates a new language content action event.
MonitorActionEvent(Date createdDate, UserSession userSession, MonitorActionEvent.Operation operation)
          Instantiates a new monitor action event.
PortalActionEvent(Date createdDate, UserSession userSession, PortalActionEvent.Operation operation, Long portalId)
          Instantiates a new portal action event.
 

Uses of UserSession in com.hack23.cia.model.application.impl.common
 

Methods in com.hack23.cia.model.application.impl.common that return UserSession
 UserSession AbstractActionEvent.getUserSession()
          Gets the user session.
 

Methods in com.hack23.cia.model.application.impl.common that return types with arguments of type UserSession
 List<UserSession> User.getUserSessions()
          Gets the user sessions.
 

Methods in com.hack23.cia.model.application.impl.common with parameters of type UserSession
 void AbstractActionEvent.setUserSession(UserSession userSession)
          Sets the user session.
 

Method parameters in com.hack23.cia.model.application.impl.common with type arguments of type UserSession
 void User.setUserSessions(List<UserSession> userSessions)
          Sets the user sessions.
 

Constructors in com.hack23.cia.model.application.impl.common with parameters of type UserSession
AbstractActionEvent(Date createdDate, UserSession userSession)
          Instantiates a new abstract action event.
ApplicationErrorActionEvent(Date createdDate, UserSession userSession, String stackTrace, String errorMessage)
          Instantiates a new application error action event.
 

Uses of UserSession in com.hack23.cia.model.application.impl.user
 

Constructors in com.hack23.cia.model.application.impl.user with parameters of type UserSession
AbstractParliamentActionEvent(Date createdDate, UserSession userSession)
          Instantiates a new abstract parliament action event.
AbstractTopListActionEvent(Date createdDate, UserSession userSession, AbstractTopListActionEvent.Operation operation)
          Instantiates a new abstract top list action event.
AbstractUserAccountActionEvent(Date createdDate, UserSession userSession)
          Instantiates a new abstract user account action event.
AbstractUserActionEvent(Date createdDate, UserSession userSession)
          Instantiates a new abstract user action event.
AbstractVIPActionEvent(Date createdDate, UserSession userSession)
          Instantiates a new abstract vip action event.
ApplicationActionEvent(Date createdDate, UserSession userSession)
          Instantiates a new application action event.
BallotActionEvent(Date createdDate, UserSession userSession, Long ballotId)
          Instantiates a new ballot action event.
CommitteeReportActionEvent(Date createdDate, UserSession userSession, Long commiteeReportId)
          Instantiates a new committee report action event.
CommitteeReportsActionEvent(Date createdDate, UserSession userSession)
          Instantiates a new committee reports action event.
ExternalUrlActionEvent(Date createdDate, UserSession userSession, ExternalUrlActionEvent.Operation operation)
          Instantiates a new external url action event.
ParliamentMemberActionEvent(Date createdDate, UserSession userSession, Long parliamentMemberId)
          Instantiates a new parliament member action event.
PartyActionEvent(Date createdDate, UserSession userSession, String party, AbstractTopListActionEvent.Operation operation)
          Instantiates a new party action event.
SearchActionEvent(Date createdDate, UserSession userSession, String search)
          Instantiates a new search action event.
TopListActionEvent(Date createdDate, UserSession userSession, AbstractTopListActionEvent.Operation operation)
          Instantiates a new top list action event.
UserAccountActionEvent(Date createdDate, UserSession userSession, UserAccountActionEvent.Operation operation)
          Instantiates a new user account action event.
UserActionEvent(Date createdDate, UserSession userSession, UserActionEvent.Operation operation)
          Instantiates a new user action event.
 

Uses of UserSession in com.hack23.cia.service.api.common
 

Methods in com.hack23.cia.service.api.common that return UserSession
 UserSession UserSessionService.addActionEvent(ActionEvent actionEvent, UserSession userSession)
          Adds the action event.
 UserSession UserSessionService.createUserSession(String sessionId, String headerHost, String serverHost, String acceptLanguageKeys, String userAgent)
          Creates the user session.
 UserSession UserSessionService.loadUserSessionById(Long userSessionId)
          Load user session by id.
 UserSession UserSessionService.login(String name, String encodedPassword, UserSession userSession)
          Login.
 UserSession UserSessionService.logout(UserSession userSession)
          Logout.
 

Methods in com.hack23.cia.service.api.common with parameters of type UserSession
 UserSession UserSessionService.addActionEvent(ActionEvent actionEvent, UserSession userSession)
          Adds the action event.
 UserSession UserSessionService.login(String name, String encodedPassword, UserSession userSession)
          Login.
 UserSession UserSessionService.logout(UserSession userSession)
          Logout.
 

Uses of UserSession in com.hack23.cia.service.impl.admin
 

Methods in com.hack23.cia.service.impl.admin that return UserSession
 UserSession AdminServiceImpl.loadUserSessionById(Long id)
           
 UserSession AdminService.loadUserSessionById(Long id)
          Load user session by id.
 UserSession AbstractAdminRequestService.lookupUserSession(AbstractServiceRequest request)
           
 

Methods in com.hack23.cia.service.impl.admin that return types with arguments of type UserSession
 List<UserSession> AdminServiceImpl.getUserSessionList()
           
 List<UserSession> AdminService.getUserSessionList()
          Gets the user session list.
 

Methods in com.hack23.cia.service.impl.admin with parameters of type UserSession
 ActionEvent AgencyRequestService.createActionEvent(AgencyRequest request, UserSession userSession)
           
 ActionEvent AgentDeploymentRequestService.createActionEvent(AgentDeploymentRequest request, UserSession userSession)
           
 ActionEvent LanguageContentRequestService.createActionEvent(LanguageContentRequest request, UserSession userSession)
           
 ActionEvent LanguageRequestService.createActionEvent(LanguageRequest request, UserSession userSession)
           
 ActionEvent MonitorRequestService.createActionEvent(MonitorRequest request, UserSession userSession)
           
 ActionEvent PortalRequestService.createActionEvent(PortalRequest request, UserSession userSession)
           
 

Uses of UserSession in com.hack23.cia.service.impl.application
 

Methods in com.hack23.cia.service.impl.application that return UserSession
 UserSession ApplicationRequestService.lookupUserSession(AbstractServiceRequest request)
           
 

Methods in com.hack23.cia.service.impl.application with parameters of type UserSession
 ActionEvent ApplicationRequestService.createActionEvent(ApplicationRequest request, UserSession userSession)
           
 

Uses of UserSession in com.hack23.cia.service.impl.common
 

Methods in com.hack23.cia.service.impl.common that return UserSession
 UserSession UserSessionServiceImpl.addActionEvent(ActionEvent actionEvent, UserSession userSession)
           
 UserSession UserSessionServiceImpl.createUserSession(String sessionId, String clientHost, String serverHost, String acceptLanguageKeys, String userAgent)
           
 UserSession UserSessionServiceImpl.loadUserSessionById(Long userSessionId)
           
 UserSession UserSessionServiceImpl.login(String name, String encodedPassword, UserSession userSession)
           
 UserSession UserSessionServiceImpl.logout(UserSession userSession)
           
 UserSession ApplicationErrorRequestService.lookupUserSession(AbstractServiceRequest request)
           
abstract  UserSession AbstractGenericService.lookupUserSession(AbstractServiceRequest request)
          Lookup user session.
 UserSession DefaultRequestService.lookupUserSession(AbstractServiceRequest request)
           
 

Methods in com.hack23.cia.service.impl.common with parameters of type UserSession
 UserSession UserSessionServiceImpl.addActionEvent(ActionEvent actionEvent, UserSession userSession)
           
 ActionEvent DefaultRequestService.createActionEvent(AbstractServiceRequest request, UserSession userSession)
           
 ActionEvent ApplicationErrorRequestService.createActionEvent(ApplicationErrorRequest request, UserSession userSession)
           
abstract  ActionEvent AbstractGenericService.createActionEvent(REQUEST service, UserSession userSession)
          Creates the action event.
 UserSession UserSessionServiceImpl.login(String name, String encodedPassword, UserSession userSession)
           
 UserSession UserSessionServiceImpl.logout(UserSession userSession)
           
 

Uses of UserSession in com.hack23.cia.service.impl.user
 

Methods in com.hack23.cia.service.impl.user that return UserSession
 UserSession AbstractUserRequestService.lookupUserSession(AbstractServiceRequest request)
           
 

Methods in com.hack23.cia.service.impl.user with parameters of type UserSession
 ActionEvent BallotRequestService.createActionEvent(BallotRequest request, UserSession userSession)
           
 ActionEvent CommitteeReportRequestService.createActionEvent(CommitteeReportRequest request, UserSession userSession)
           
 ActionEvent CommitteeReportsRequestService.createActionEvent(CommitteeReportsRequest request, UserSession userSession)
           
 ActionEvent ExternalUrlRequestService.createActionEvent(ExternalUrlRequest request, UserSession userSession)
           
 ActionEvent LoginRequestService.createActionEvent(LoginRequest request, UserSession userSession)
           
 ActionEvent LogoutRequestService.createActionEvent(LogoutRequest request, UserSession userSession)
           
 ActionEvent ParliamentMemberRequestService.createActionEvent(ParliamentMemberRequest request, UserSession userSession)
           
 ActionEvent PartyRequestService.createActionEvent(PartyRequest request, UserSession userSession)
           
 ActionEvent RegisterUserRequestService.createActionEvent(RegisterUserRequest request, UserSession userSession)
           
 ActionEvent SearchRequestService.createActionEvent(SearchRequest request, UserSession userSession)
           
 ActionEvent TopListRequestService.createActionEvent(TopListRequest request, UserSession userSession)
           
 ActionEvent UserRequestService.createActionEvent(UserRequest request, UserSession userSession)
           
 

Uses of UserSession in com.hack23.cia.web.views.form.admin
 

Constructors in com.hack23.cia.web.views.form.admin with parameters of type UserSession
UserSessionForm(UserSessionDTO userSessionDTO, UserSession userSession)
          Instantiates a new user session form.
 



Copyright © 2008-2009 www.hack23.com. All Rights Reserved.