DestinationPolicyType dp = destination.getDestinationPolicies();
Duration supportedDuration = dp.getSequenceExpiration();
if (null == supportedDuration) {
supportedDuration = SourceSequence.PT0S;
}
Expires ex = cs.getExpires();
LOG.info("supported duration: " + supportedDuration);
if (null != ex || supportedDuration.isShorterThan(SourceSequence.PT0S)) {
Duration effectiveDuration = supportedDuration;
if (null != ex && supportedDuration.isLongerThan(ex.getValue())) {
effectiveDuration = supportedDuration;
}
ex = RMUtils.getWSRMFactory().createExpires();
ex.setValue(effectiveDuration);
csr.setExpires(ex);
}
OfferType offer = cs.getOffer();
if (null != offer) {