Interface IDatenquelleHandler
- 
- All Superinterfaces:
 IAPIHandler,IGenericHandler,Serializable
- All Known Implementing Classes:
 DatenquelleHandler
public interface IDatenquelleHandler extends IGenericHandler
The Class DataStoreHandler.- Author:
 - XIMA MEDIA GmbH
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DatenquellegetDatenquelleById(UserContext uc, Mandant client, int id)Gets the DataStores by.DatenquellegetDatenquelleByName(UserContext uc, Mandant client, String name)Gets the DataStores by.DatenquellegetDatenquelleByNameAndType(UserContext uc, Mandant client, String name, EDatenquellenTyp datenquellenTyp)Gets the DataStores by name and typeList<Datenquelle>getDatenquellen(UserContext uc, Mandant client)Gets the DataStores.DatenquellegetPublicDatasource(UserContext uc, Mandant client, String name, EDatenquellenTyp datenquellenTyp)Gets an public datasource- 
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
- 
getDatenquellen
List<Datenquelle> getDatenquellen(UserContext uc, Mandant client)
Gets the DataStores.- Parameters:
 uc- theUserContextto useclient- the client- Returns:
 - the DataStores
 
 
- 
getDatenquelleByName
Datenquelle getDatenquelleByName(UserContext uc, Mandant client, String name)
Gets the DataStores by.- Parameters:
 uc- theUserContextto useclient- the clientname- the name of theDatenquelle- Returns:
 - the DataStores
 
 
- 
getDatenquelleByNameAndType
Datenquelle getDatenquelleByNameAndType(UserContext uc, Mandant client, String name, EDatenquellenTyp datenquellenTyp)
Gets the DataStores by name and type- Parameters:
 uc- theUserContextto useclient- the clientname- the name of theDatenquelledatenquellenTyp- the type of theDatenquelle- Returns:
 Datenquelleornullif not found- Since:
 - 5.1.0
 
 
- 
getDatenquelleById
Datenquelle getDatenquelleById(UserContext uc, Mandant client, int id)
Gets the DataStores by.- Parameters:
 uc- theUserContextto useclient- the clientid- the id of theDatenquelle- Returns:
 - the DataStores
 
 
- 
getPublicDatasource
Datenquelle getPublicDatasource(UserContext uc, Mandant client, String name, EDatenquellenTyp datenquellenTyp)
Gets an public datasource- Parameters:
 uc- theUserContextto useclient- the clientname- the name of theDatenquelledatenquellenTyp- the type of theDatenquelle- Returns:
 Datenquelleornullif not found or not public
 
 - 
 
 -