Esempio n. 1
0
  @Override
  public Object call(ExecutionContext context, Object self, Object... args) {
    String uriComponent = Types.toString(context, args[0]);

    String result = URLCodec.encode(context, uriComponent, URLCodec.URI_UNESCAPED_SET);

    return result;
  }