Annotation Type FaunaIgnore


  • @Retention(RUNTIME)
    public @interface FaunaIgnore

    Instructs the encoder/decoder to not encode/decode the annotated member.

    
     class User {
         private String userName;
         private String password;
    
         @FaunaField("user_name")
         public String getUserName() { return userName; }
    
         @FaunaIgnore
         public String getPassword() { return password; }
     }