Annotation Type GridToStringInclude
-
@Documented @Retention(RUNTIME) @Target({FIELD,TYPE}) public @interface GridToStringInclude
Attach this annotation to a field or a class to indicate that this field or fields of this class should be included intoString()output. This annotation allows to override the default exclusion policy.
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description booleansensitiveA flag indicating a sensitive information stored in the field or fields of the class.
Such information will be included intoString()output ONLY when the system propertyIGNITE_TO_STRING_INCLUDE_SENSITIVEis set totrue.
-
-
-
Element Detail
-
sensitive
boolean sensitive
A flag indicating a sensitive information stored in the field or fields of the class.
Such information will be included intoString()output ONLY when the system propertyIGNITE_TO_STRING_INCLUDE_SENSITIVEis set totrue.- Returns:
- Attribute value.
- Default:
- false
-
-