Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
global interface FuseIT_S4SCloud.FormValidator {
    
    /**
     * Determine whether form data is valid and should be processed.
     * @param data The parsed form object with field values.
     * @return True if the form should be processed, false to cancel.
     */
    Boolean isValid(FuseIT_S4SCloud.FormData data);

}
Note

Implementations Implementation classes should use global inherited sharing, because form validation occurs during anonymous calls to public endpoints. The context user is that configured in the Salesforce Site.

...