Package com.flowable.action.api.runtime
Interface ScopedObjectProvider<T,H>
-
- All Known Implementing Classes:
CaseInstanceScopedObjectProvider
,ProcessInstanceScopedObjectProvider
,TaskScopedObjectProvider
public interface ScopedObjectProvider<T,H>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default H
getHistoricScopedObject(String scopeType, String scopeId, SecurityScope securityScope)
T
getScopedObject(String scopeType, String scopeId, SecurityScope securityScope)
String
getScopeType()
-
-
-
Method Detail
-
getScopeType
String getScopeType()
-
getScopedObject
T getScopedObject(String scopeType, String scopeId, SecurityScope securityScope)
-
getHistoricScopedObject
default H getHistoricScopedObject(String scopeType, String scopeId, SecurityScope securityScope)
-
-