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 Datenquelle
getDatenquelleById(UserContext uc, Mandant client, int id)
Gets the DataStores by.Datenquelle
getDatenquelleByName(UserContext uc, Mandant client, String name)
Gets the DataStores by.Datenquelle
getDatenquelleByNameAndType(UserContext uc, Mandant client, String name, EDatenquellenTyp datenquellenTyp)
Gets the DataStores by name and typeList<Datenquelle>
getDatenquellen(UserContext uc, Mandant client)
Gets the DataStores.Datenquelle
getPublicDatasource(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, getSingleAttributes, getSingleAttributes, resultTotalCount, update, update
-
-
-
-
Method Detail
-
getDatenquellen
List<Datenquelle> getDatenquellen(UserContext uc, Mandant client)
Gets the DataStores.- Parameters:
uc
- theUserContext
to useclient
- the client- Returns:
- the DataStores
-
getDatenquelleByName
Datenquelle getDatenquelleByName(UserContext uc, Mandant client, String name)
Gets the DataStores by.- Parameters:
uc
- theUserContext
to 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
- theUserContext
to useclient
- the clientname
- the name of theDatenquelle
datenquellenTyp
- the type of theDatenquelle
- Returns:
Datenquelle
ornull
if not found- Since:
- 5.1.0
-
getDatenquelleById
Datenquelle getDatenquelleById(UserContext uc, Mandant client, int id)
Gets the DataStores by.- Parameters:
uc
- theUserContext
to 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
- theUserContext
to useclient
- the clientname
- the name of theDatenquelle
datenquellenTyp
- the type of theDatenquelle
- Returns:
Datenquelle
ornull
if not found or not public
-
-