class GetLinkStatusFunction implements Function {
public Object call(Context context, List args)
throws FunctionCallException {
assert args.size() == 1;
OLink olink = _oxpath.links.get(args.get(0));
try {
return _xpathEvalCtx.isLinkActive(olink) ? Boolean.TRUE : Boolean.FALSE;
} catch (FaultException e) {
__log.error("bpws:getLinkStatus(" + args + ") threw FaultException", e);