Exemple #1
0
  private void executeService(Context ctx, SERVICE service) {
    String ns = service.getNs();
    NSHandler handler = registry.lookup(ns);
    if (handler == null) {
      LOGGER.error("NS[" + ns + "] not found.");
      return;
    }

    handler.service(ctx, service);
  }