Would be nice if there is possible to call Sling model method which takes parameters. Example: Sling model: ` public String getMethod(String param1, String param2){ return param1 + param2; } ` Htl: `${model.method(value1, value2)} or ${model.method @ value1, value2 } or ${model.method @ param1=value1, param2=value2 } `