Interface IMandantHandler
- 
- All Superinterfaces:
 IAPIHandler,IGenericHandler,Serializable
- All Known Implementing Classes:
 MandantHandler
public interface IMandantHandler extends IGenericHandler
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<Mandant>getAllByName(UserContext uc, String name)Method for determining allMandants by name (case insensitive).MandantgetByName(UserContext uc, String name)Method for determining aMandantby his name (case insensitive).MandantgetByUUID(UserContext uc, String uuid)MandantgetByUUID(UserContext uc, UUID uuid)booleanisCreationAllowed(UserContext uc, Mandant mandant)- 
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, getSingleAttributes, getSingleAttributes, resultTotalCount, update, update 
 - 
 
 - 
 
- 
- 
Method Detail
- 
getByName
Mandant getByName(UserContext uc, String name)
Method for determining aMandantby his name (case insensitive).- Parameters:
 uc-UserContextthe user context in which the action is to be performed.name-Stringthe name of theMandant(case insensitive).- Returns:
 Mandantwhich was searched.- Since:
 - 6.0.1
 
 
- 
getAllByName
List<Mandant> getAllByName(UserContext uc, String name)
Method for determining allMandants by name (case insensitive).- Parameters:
 uc-UserContextthe user context in which the action is to be performed.name-Stringthe name which is to searched (case insensitive).- Returns:
 ListofMandantwhich were found.- Since:
 - 6.0.1
 
 
- 
isCreationAllowed
boolean isCreationAllowed(UserContext uc, Mandant mandant)
 
- 
getByUUID
Mandant getByUUID(UserContext uc, String uuid)
 
- 
getByUUID
Mandant getByUUID(UserContext uc, UUID uuid)
 
 - 
 
 -