Annotation Interface SystemProperty


@ClassVersion(sourceVersion="$Id: SystemProperty.java 1120 2024-03-16 09:48:00Z tquadrat $") @Documented @Retention(CLASS) @Target(METHOD) @API(status=STABLE, since="0.0.1") public @interface SystemProperty

This annotation indicates that the property for the annotated getter is initialised from a system property with the given name.

The initialisation uses the default StringConverter for the type of the property if none is provided; if there is no default String converter, an error is thrown during compile time.

Changing the configuration property value will not have an effect to the system property.

This annotation implies the NoPreference annotation.

Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: SystemProperty.java 1120 2024-03-16 09:48:00Z tquadrat $
Since:
0.0.1
See Also:
  • Required Element Summary

    Required Elements
    Modifier and Type
    Required Element
    Description
    The name for the system property to read.
  • Optional Element Summary

    Optional Elements
    Modifier and Type
    Optional Element
    Description
    The default value for the system property.
  • Element Details

    • defaultValue

      The default value for the system property. It will be used for the initialisation of the property if the system property is not set.

      It is mandatory to provide a default value for primitive type properties.

      The default setting is a String containing only a NUL; it will be treated as _null

      Returns:
      The default value.
      Default:
      "\u0000"
    • value

      The name for the system property to read.
      Returns:
      The name for the system property.