// storing target data
ComputationTarget computationTarget = _computationTargetResolver.resolve(targetSpec, VersionCorrection.LATEST);
Object targetValue = computationTarget.getValue();
if (targetValue instanceof Bean) {
Bean bean = (Bean) targetValue;
for (String propertyName : bean.propertyNames()) {
Property<Object> property = bean.property(propertyName);
final long targetPropertyId = nextId(RSK_SEQUENCE_NAME);
targetProperties.add(getTargetPropertyArgs(targetPropertyId, computationTargetId, propertyName, property.get() == null ? "NULL" : property.get().toString()));
}
}