sources/src/main/java/com/google/solutions/jitaccess/catalog/policy/CelConstraint.java [161:169]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      var json = new GenericJson();
      this.variables.put(name, json);
      return new Context() {
        @Override
        public Context set(@NotNull String name, @NotNull Object value) {
          json.set(name, value);
          return this;
        }
      };
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



sources/src/main/java/com/google/solutions/jitaccess/common/cel/StringTemplate.java [64:72]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    var json = new GenericJson();
    this.variables.put(name, json);
    return new Context() {
      @Override
      public Context set(@NotNull String name, @NotNull Object value) {
        json.set(name, value);
        return this;
      }
    };
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



