public void addMessageProperty(MessagePropertyDO messagePropertyDO)
throws BAMException {
BAMDataCollectionDSClient client = null;
try {
client = BAMUtil.getBAMDataCollectionDSClient();
client.addMessageProperty(messagePropertyDO);
} catch (BAMException e) {
throw e;
} finally {
if (client != null) {
client.cleanup();