SFSBServiceContextInfo ctx = scTLD.get();
return (ctx != null) ? ctx.responseVersion : NO_VERSION;
}
public static void setResponseClientVersion(long val) {
SFSBServiceContextInfo ctx = scTLD.get();
if (ctx == null) {
ctx = new SFSBServiceContextInfo();
scTLD.set(ctx);
}
ctx.responseVersion = val;
}