26272829303132333435363738
protected String handleGetCondition() { String decision = null; final GuardFacade guard = this.getGuard(); if (guard != null) { decision = guard.getBody(); } return decision; }
3334353637383940
super(metaObject, context); } protected String handleGetGuardName() { final GuardFacade guard = this.getGuard(); return (guard == null) ? null : guard.getName(); }