* @param dat The deliveryAssurance to set.
*/
public void setDeliveryAssurance(DeliveryAssuranceType dat) {
RMConfiguration cfg = getConfiguration();
cfg.setInOrder(dat.isSetInOrder());
DeliveryAssurance da = null;
if (dat.isSetExactlyOnce() || (dat.isSetAtLeastOnce() && dat.isSetAtMostOnce())) {
da = DeliveryAssurance.EXACTLY_ONCE;
} else if (dat.isSetAtLeastOnce()) {
da = DeliveryAssurance.AT_LEAST_ONCE;
} else if (dat.isSetAtMostOnce()) {