Package de.xima.fc.handler.entity
Class UserPortalHandler
- java.lang.Object
-
- de.xima.fc.handler.AMSApiHandler
-
- de.xima.fc.handler.entity.GenericHandler
-
- de.xima.fc.handler.entity.UserPortalHandler
-
- All Implemented Interfaces:
IAPIHandler
,IGenericHandler
,IUserPortalHandler
,Serializable
public class UserPortalHandler extends GenericHandler implements IUserPortalHandler
Handler implementation for reading and writingUserPortal
entities.- Since:
- 8.2.0
- Author:
- XIMA Media GmbH
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class de.xima.fc.handler.entity.GenericHandler
LOG
-
-
Constructor Summary
Constructors Constructor Description UserPortalHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UserPortal
getByAlias(UserContext uc, String alias)
Returns the user portal with the given alias.UserPortal
getByUuid(UserContext uc, UUID uuid)
Returns the user portal with the given UUID.PagedResult<UserPortal>
getForFrontendServer(UserContext uc, FrontendServer frontendServer, int page, int pageSize)
Returns all user portal entities available on the given frontend server.PagedResult<UserPortal>
getForMasterServer(UserContext uc, int page, int pageSize)
Returns all user portal entities available on the master server.-
Methods inherited from class de.xima.fc.handler.entity.GenericHandler
create, create, delete, delete, deleteBy, deleteById, deleteById, getAll, getAllBy, getAttributes, getAttributes, getBy, getById, getById, getById, getEntityRefs, getSingleAttributes, getSingleAttributes, resultTotalCount, serializableList, update, update
-
Methods inherited from class de.xima.fc.handler.AMSApiHandler
getName
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface de.xima.fc.com.interfaces.IAPIHandler
getName
-
Methods inherited from interface de.xima.fc.handler.interfaces.entity.IGenericHandler
create, create, delete, delete, deleteBy, deleteById, deleteById, getAll, getAllBy, getAttributes, getAttributes, getBy, getById, getById, getById, getEntityRefs, getSingleAttributes, getSingleAttributes, resultTotalCount, update, update
-
-
-
-
Method Detail
-
getByUuid
public UserPortal getByUuid(UserContext uc, UUID uuid)
Description copied from interface:IUserPortalHandler
Returns the user portal with the given UUID.- Specified by:
getByUuid
in interfaceIUserPortalHandler
- Parameters:
uc
- user context for database transactions.uuid
- of the user portal.- Returns:
- the user portal with the given UUID or
null
.
-
getByAlias
public UserPortal getByAlias(UserContext uc, String alias)
Description copied from interface:IUserPortalHandler
Returns the user portal with the given alias.- Specified by:
getByAlias
in interfaceIUserPortalHandler
- Parameters:
uc
- user context for database transactions.alias
- of the user portal.- Returns:
- the user portal with the given alias or
null
.
-
getForMasterServer
public PagedResult<UserPortal> getForMasterServer(UserContext uc, int page, int pageSize)
Description copied from interface:IUserPortalHandler
Returns all user portal entities available on the master server.- Specified by:
getForMasterServer
in interfaceIUserPortalHandler
- Parameters:
uc
- user context for database transactions.page
- to get.pageSize
- size of the page to get. Defines the size of the returned sub list.- Returns:
- all user portal entities available on the master server.
-
getForFrontendServer
public PagedResult<UserPortal> getForFrontendServer(UserContext uc, FrontendServer frontendServer, int page, int pageSize)
Description copied from interface:IUserPortalHandler
Returns all user portal entities available on the given frontend server.- Specified by:
getForFrontendServer
in interfaceIUserPortalHandler
- Parameters:
uc
- user context for database transactions.frontendServer
- to get the user portals for.page
- to get.pageSize
- size of the page to get. Defines the size of the returned sub list.- Returns:
- all user portal entities available on the given frontend server.
-
-