Welcome to the Jazz Community Forum
ImmutablePropertyException on file

fileItemCopy.setUserProperty(PROPERTY, definition_UUID); // change not applied in the stream
fileItem.setUserProperty(PROPERTY, definition_UUID); // throws ImmutablePropertyException
One answer

- getting an IShareable for the file you care about,
- grabbing the user properties from the shareable with getMetadataProperties() ,
- modify the properties,
- run IOperationFactory.instance.getChangePropertiesOperation() to get an object that's capable of saving your modifications
- use IChangePropertiesOperation#setProperties() followed by run() to update the local metadata
- Modify the IFileItem working copy as you're doing today,
- call wsConn.configurationOpFactory() on your workspace connection to get the op factory,
- call factory.save(fileItemCopy) to create the save operation that you want to commit,
- call wsConn.commit() on the save operation from the previous step.
IScmService
directly, which is roughly analogous to using the client libraries. The difference being that you call
IScmService#batchCommit()
to commit.
Comments

Evan,
1 vote

I'm using a delivery advisor to change a specific userproperty on this file directly in the changeset that is getting deliverd into the stream.
I don't recommend modifying change sets while the advisor is running, since advisors aren't supposed to modify their arguments. Additionally, the change sets that are being delivered may be closed, so your changes may end up creating a new change set that isn't one of the delivery arguments. I'm not sure what will happen in that scenario. :)

Evan, thanks for the clear explanation.

IScmService#batchCommit(), as u stated gives me this error:
Illegal operation ('commit') for stream 'MyLifecycleProject (Change Management) Stream'
I only have the target workspace available in my delta. (and that's the stream i suppose)

Sorry - that completely slipped my mind: change sets can't be created or committed to on a stream (that's an IWorkspace with the 'stream' bit set). Instead you need to create the change sets on another workspace and deliver them.