Delete existing asset subscription

To delete an asset subscription in the repository, get the existing subscription and delete it. Use RAMSession.put(RAMAsset, RAMStatusMonitor) to delete the asset subscription.

//Delete an existing subscription
existingSub.setAction(RAMAction.DELETE);
asset.addSubscription(existingSub);
session.put(asset, new RAMStatusMonitor());

Feedback