public String getSessionVersion (AWRequestContext requestContext)
{
// check for brand version in the session if available
AWSession session = requestContext.session(false);
if (session != null) {
return session.brandVersion();
}
return getRequestVersion(requestContext);
}
}