use of com.evolveum.midpoint.xml.ns._public.model.model_3.GetObjectType in project midpoint by Evolveum.
the class AbstractPhotoTest method parseDelta.
ObjectDelta<T> parseDelta(String oid, File file) throws SchemaException, IOException {
ObjectModificationType modification = PrismTestUtil.parseAtomicValue(file, ObjectModificationType.COMPLEX_TYPE);
ObjectDelta<T> delta = DeltaConvertor.createObjectDelta(modification, getObjectType(), prismContext);
delta.setOid(oid);
return delta;
}
Aggregations