@PalmyraIgnore#

com.palmyralabs.palmyra.base.annotations.PalmyraIgnore

Marker annotation — excludes a field from Palmyra’s processing (no attribute). Target: FIELD. Retention: RUNTIME.

Attributes#

None.

Example#

public class User {
    private String loginName;

    @PalmyraIgnore
    private transient String oneTimeToken; // never mapped, never serialized
}