I am not able to update an ObjectAttributeValueBean after modifying a value with MutableObjectAttributeValueBean
def objectServer_AttributeVertraulichkeit = objectFacade.loadObjectAttributeBean(id_ServerObject, objectTypeAttributeBean_servVertraulichkeitId)
List<? extends ObjectAttributeValueBean> objectServerAttributeValueVertraulichkeit = objectServer_AttributeVertraulichkeit.getObjectAttributeValueBeans()
objectServerAttributeValueVertraulichkeit.each
{
element_objectServerAttributeValueVertraulichkeit ->
aaa = element_objectServerAttributeValueVertraulichkeit.createMutable()
zzz = element_objectServerAttributeValueVertraulichkeit.getId()
yyy = element_objectServerAttributeValueVertraulichkeit.getValue()
xxx = element_objectServerAttributeValueVertraulichkeit.getReferencedObjectBeanId()
aaa.setReferencedObjectBeanId(changeValue_servVertraulichkeit)
}
After the assignment of the new value, nothing change in the insight object attribute.
How do I store the modified value in the ObjectAttributeValueBean?
I could not find a method
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.