public DepTuple rdp(DepTuple template, Context ctx) throws DepSpaceException {
   if (policyEnforcer.canExecuteRdp(ctx.getInvokerId(), template, ctx)) {
     return upperLayer.rdp(template, ctx);
   } else {
     throw new DepSpaceOperationNotAllowed("rdp", ctx.getInvokerId(), template);
   }
 }