Interface IProtokollHandler
-
- All Superinterfaces:
IAPIHandler,Serializable
- All Known Implementing Classes:
ProtokollHandler
public interface IProtokollHandler extends IAPIHandler
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddClientProtocolEntry(UserContext uc, Mandant mandant, ProtocolEntryClient entry)voidaddClientProtocolEntry(UserContext uc, Projekt projekt, ProtocolEntryClient entry)voidaddProcessProtocolEntry(UserContext uc, Vorgang vorgang, ProtocolEntryProcessing entry)voidaddSystemProtocolEntry(UserContext uc, ProtocolEntrySystem entry)List<ProtocolEntryClient>getClientProtocol(UserContext uc, Long clientId)List<ProtocolEntryProcessing>getProcessProtocol(UserContext uc, Long formRecordMetaID)List<ProtocolEntrySystem>getSystemProtocol(UserContext uc)-
Methods inherited from interface de.xima.fc.com.interfaces.IAPIHandler
getName
-
-
-
-
Method Detail
-
addProcessProtocolEntry
void addProcessProtocolEntry(UserContext uc, Vorgang vorgang, ProtocolEntryProcessing entry)
-
addClientProtocolEntry
void addClientProtocolEntry(UserContext uc, Projekt projekt, ProtocolEntryClient entry)
-
addClientProtocolEntry
void addClientProtocolEntry(UserContext uc, Mandant mandant, ProtocolEntryClient entry)
-
addSystemProtocolEntry
void addSystemProtocolEntry(UserContext uc, ProtocolEntrySystem entry)
-
getProcessProtocol
List<ProtocolEntryProcessing> getProcessProtocol(UserContext uc, Long formRecordMetaID)
-
getClientProtocol
List<ProtocolEntryClient> getClientProtocol(UserContext uc, Long clientId)
-
getSystemProtocol
List<ProtocolEntrySystem> getSystemProtocol(UserContext uc)
-
-