Package fr.ird.observe.services.service
Interface ReferenceService
-
- All Superinterfaces:
ObserveService
public interface ReferenceService extends ObserveService
Created on 10/11/2020.- Since:
- 8.0.1
- Author:
- Tony Chemit - dev@tchemit.fr
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <R extends DataDtoReference>
DataDtoReferenceSet<R>loadAllData(Class<R> type)<R extends ReferentialDtoReference>
ReferentialDtoReferenceSet<R>loadAllReferential(Class<R> type)<R extends DataDtoReference>
RloadData(Class<R> type, String id)<R extends DataDtoReference>
RloadOrCreateData(Class<R> type, String id)<R extends ReferentialDtoReference>
RloadOrCreateReferential(Class<R> type, String id)<R extends ReferentialDtoReference>
RloadReferential(Class<R> type, String id)
-
-
-
Method Detail
-
loadOrCreateData
<R extends DataDtoReference> R loadOrCreateData(Class<R> type, String id)
-
loadData
<R extends DataDtoReference> R loadData(Class<R> type, String id)
-
loadAllData
<R extends DataDtoReference> DataDtoReferenceSet<R> loadAllData(Class<R> type)
-
loadOrCreateReferential
<R extends ReferentialDtoReference> R loadOrCreateReferential(Class<R> type, String id)
-
loadReferential
<R extends ReferentialDtoReference> R loadReferential(Class<R> type, String id)
-
loadAllReferential
<R extends ReferentialDtoReference> ReferentialDtoReferenceSet<R> loadAllReferential(Class<R> type)
-
-