Class ConstructionProcessor
java.lang.Object
com.evolveum.midpoint.model.impl.lens.projector.ConstructionProcessor
- Author:
- Radovan Semancik
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription<AH extends AssignmentHolderType,
K extends HumanReadableDescribable, ACT extends AbstractConstructionType, AC extends AbstractConstruction<AH, ACT, EC>, EC extends EvaluatedAbstractConstruction<AH>>
DeltaMapTriple<K,EvaluatedConstructionPack<EC>> distributeConstructions
(DeltaSetTriple<EvaluatedAssignmentImpl<AH>> evaluatedAssignmentTriple, Function<EvaluatedAssignmentImpl<AH>, DeltaSetTriple<AC>> constructionTripleExtractor, FailableLensFunction<EC, K> keyGenerator, ComplexConstructionConsumer<K, EC> consumer, Task task, OperationResult result) Categorizes assigned constructions (resource object or persona ones) from evaluated assignments into other structures by calling appropriate methods on the consumer.
-
Constructor Details
-
ConstructionProcessor
public ConstructionProcessor()
-
-
Method Details
-
distributeConstructions
public <AH extends AssignmentHolderType,K extends HumanReadableDescribable, DeltaMapTriple<K,ACT extends AbstractConstructionType, AC extends AbstractConstruction<AH, ACT, EC>, EC extends EvaluatedAbstractConstruction<AH>> EvaluatedConstructionPack<EC>> distributeConstructions(DeltaSetTriple<EvaluatedAssignmentImpl<AH>> evaluatedAssignmentTriple, Function<EvaluatedAssignmentImpl<AH>, DeltaSetTriple<AC>> constructionTripleExtractor, FailableLensFunction<EC, throws ObjectNotFoundException, SchemaException, CommunicationException, ConfigurationException, SecurityViolationException, ExpressionEvaluationExceptionK> keyGenerator, ComplexConstructionConsumer<K, EC> consumer, Task task, OperationResult result) Categorizes assigned constructions (resource object or persona ones) from evaluated assignments into other structures by calling appropriate methods on the consumer.- Type Parameters:
AH
- Focus typeK
- Indexing key type. Currently, for resource object constructions it isProjectionContextKey
; for personas it isPersonaKey
(type+subtypes).ACT
- Construction bean type.AC
- Construction type.EC
- Evaluated construction type.- Parameters:
evaluatedAssignmentTriple
- Constructions collected during assignment evaluation.constructionTripleExtractor
- Method that extracts constructions of given type - resource objects or personas - (in the form of triple i.e. added/deleted/kept) from evaluated assignment. SeeConstructionCollector
.keyGenerator
- Method that generates indexing key for constructions, under which they are collected. See K type.consumer
- Object that receives categorized constructions (via methods like onAssigned, onUnchangedValid, ...).- Returns:
- Constructions sorted out by status (plus/minus/zero) and indexing key (
ProjectionContextKey
orPersonaKey
). - Throws:
ObjectNotFoundException
SchemaException
CommunicationException
ConfigurationException
SecurityViolationException
ExpressionEvaluationException
-