Annotation Type ScriptVariable


@Target({METHOD,FIELD,PARAMETER}) @Retention(RUNTIME) @InjectAnnotation public @interface ScriptVariable
Annotation to be used on either methods, fields or constructor parameters to let Sling Models inject a script variable (from the org.apache.sling.api.scripting.SlingBindings)
  • Element Details

    • name

      String name
      Specifies the name of the script variable. If empty or not set, then the name is derived from the method or field.
      Returns:
      Name
      Default:
      ""
    • optional

      @Deprecated boolean optional
      Deprecated.
      Use injectionStrategy() instead.
      If set to true, the model can be instantiated even if there is no scripting value with the specified name. Default = false.
      Returns:
      Optional
      Default:
      false
    • injectionStrategy

      InjectionStrategy injectionStrategy
      Specifies the injection strategy applied to an annotated element: WARNING: Injection strategy is ignored if either Optional or Required is applied on the same element.
      Returns:
      Injection strategy
      Default:
      DEFAULT