Package de.xima.fc.handler.entity
Class SystemAuthenticatorHandler
- java.lang.Object
 - 
- de.xima.fc.handler.AMSApiHandler
 - 
- de.xima.fc.handler.entity.GenericHandler
 - 
- de.xima.fc.handler.entity.SystemAuthenticatorHandler
 
 
 
 
- 
- All Implemented Interfaces:
 IAPIHandler,IGenericHandler,ISystemAuthenticatorHandler,Serializable
public class SystemAuthenticatorHandler extends GenericHandler implements ISystemAuthenticatorHandler
Handler implementation for reading and writingSystemAuthenticatorentities.- Since:
 - 8.0.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 SystemAuthenticatorHandler() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SystemAuthenticatorgetByCallback(UserContext uc, UUID callbackUuid)Finds the system authenticator by its callback UUID.SystemAuthenticatorgetByUuid(UserContext uc, UUID uuid)- 
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 SystemAuthenticator getByUuid(UserContext uc, UUID uuid)
- Specified by:
 getByUuidin interfaceISystemAuthenticatorHandler- Parameters:
 uc- Current user context for database transactions.uuid- UUID of the authenticator to retrieve.- Returns:
 - The authenticator with the given UUID, or 
nullwhen no such authenticator exist. 
 
- 
getByCallback
public SystemAuthenticator getByCallback(UserContext uc, UUID callbackUuid)
Description copied from interface:ISystemAuthenticatorHandlerFinds the system authenticator by its callback UUID.- Specified by:
 getByCallbackin interfaceISystemAuthenticatorHandler- Parameters:
 uc- Current user context for accessing the database.callbackUuid- Callback UUID of the authenticator to retrieve.- Returns:
 - The authenticator with the given callback UUID, or 
nullwhen no such authenticator exist. 
 
 - 
 
 -