Package de.xima.fc.handler.entity
Class DatenquelleHandler
- java.lang.Object
-
- de.xima.fc.handler.AMSApiHandler
-
- de.xima.fc.handler.entity.GenericHandler
-
- de.xima.fc.handler.entity.DatenquelleHandler
-
- All Implemented Interfaces:
IAPIHandler
,IDatenquelleHandler
,IGenericHandler
,Serializable
public class DatenquelleHandler extends GenericHandler implements IDatenquelleHandler
The Class DataStoreHandler.- 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 DatenquelleHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Datenquelle
getDatenquelleById(UserContext uc, Mandant mandant, int id)
Gets the DataStores by.Datenquelle
getDatenquelleByName(UserContext uc, Mandant man, String name)
Gets the DataStores by.Datenquelle
getDatenquelleByNameAndType(UserContext uc, Mandant mandant, String name, EDatenquellenTyp datenquellenTyp)
Gets the DataStores by name and typeList<Datenquelle>
getDatenquellen(UserContext uc, Mandant mandant)
Gets the DataStores.Datenquelle
getPublicDatasource(UserContext uc, Mandant client, String name, EDatenquellenTyp type)
Gets an public datasource-
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
-
getDatenquellen
public List<Datenquelle> getDatenquellen(UserContext uc, Mandant mandant)
Gets the DataStores.- Specified by:
getDatenquellen
in interfaceIDatenquelleHandler
- Parameters:
uc
- theUserContext
to usemandant
- the client- Returns:
- the DataStores
-
getDatenquelleByName
public Datenquelle getDatenquelleByName(UserContext uc, Mandant man, String name)
Gets the DataStores by.- Specified by:
getDatenquelleByName
in interfaceIDatenquelleHandler
- Parameters:
uc
- theUserContext
to useman
- the clientname
- the name of theDatenquelle
- Returns:
- the DataStores
-
getDatenquelleById
public Datenquelle getDatenquelleById(UserContext uc, Mandant mandant, int id)
Gets the DataStores by.- Specified by:
getDatenquelleById
in interfaceIDatenquelleHandler
- Parameters:
uc
- theUserContext
to usemandant
- the clientid
- the id of theDatenquelle
- Returns:
- the DataStores
-
getDatenquelleByNameAndType
public Datenquelle getDatenquelleByNameAndType(UserContext uc, Mandant mandant, String name, EDatenquellenTyp datenquellenTyp)
Description copied from interface:IDatenquelleHandler
Gets the DataStores by name and type- Specified by:
getDatenquelleByNameAndType
in interfaceIDatenquelleHandler
- Parameters:
uc
- theUserContext
to usemandant
- the clientname
- the name of theDatenquelle
datenquellenTyp
- the type of theDatenquelle
- Returns:
Datenquelle
ornull
if not found
-
getPublicDatasource
public Datenquelle getPublicDatasource(UserContext uc, Mandant client, String name, EDatenquellenTyp type)
Description copied from interface:IDatenquelleHandler
Gets an public datasource- Specified by:
getPublicDatasource
in interfaceIDatenquelleHandler
- Parameters:
uc
- theUserContext
to useclient
- the clientname
- the name of theDatenquelle
type
- the type of theDatenquelle
- Returns:
Datenquelle
ornull
if not found or not public
-
-