Class MetadataComputationInput.InputDataValue
- java.lang.Object
-
- com.evolveum.midpoint.model.common.mapping.metadata.MetadataComputationInput.InputDataValue
-
- All Implemented Interfaces:
DebugDumpable
- Enclosing class:
- MetadataComputationInput
public static class MetadataComputationInput.InputDataValue extends Object implements DebugDumpable
-
-
Field Summary
-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Constructor Summary
Constructors Constructor Description InputDataValue(PrismValue value, Map<String,Collection<?>> metadataSourceMap)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
debugDump(int indent)
Map<String,Collection<?>>
getMetadataSourceMap()
Real values of metadata sources for this mapping.Collection<?>
getMetadataValues()
Values of metadata source, assuming that there is a single metadata source.PrismValue
getPrismValue()
Data value, e.g.Object
getRealValue()
Real data value, e.g.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.evolveum.midpoint.util.DebugDumpable
debugDump, debugDumpLazily, debugDumpLazily
-
-
-
-
Constructor Detail
-
InputDataValue
public InputDataValue(PrismValue value, Map<String,Collection<?>> metadataSourceMap)
-
-
Method Detail
-
getPrismValue
public PrismValue getPrismValue()
Data value, e.g. "Jack" (prism value with metadata).
-
getRealValue
public Object getRealValue()
Real data value, e.g. "Jack" (String or PolyString with no metadata).
-
getMetadataSourceMap
public Map<String,Collection<?>> getMetadataSourceMap()
Real values of metadata sources for this mapping. E.g. for LoA mapping (loa -> loa) here is only single entry: - key = "loa" - values = list of all LoA values for individual yields of prismValue metadata.
-
getMetadataValues
public Collection<?> getMetadataValues()
Values of metadata source, assuming that there is a single metadata source. A convenience method.
-
debugDump
public String debugDump(int indent)
- Specified by:
debugDump
in interfaceDebugDumpable
-
-