Package com.adobe.aemds.guide.model
Class ValidationOptions
- java.lang.Object
-
- com.adobe.aemds.guide.model.ValidationOptions
-
public class ValidationOptions extends java.lang.Object
ValidationOptions describes the basic options required to validate an adaptive form on server side. UseValidationOptions.ValidationOptionsBuilder
, it's static helper class to define the validation options.- Since:
- 6.3
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ValidationOptions.ValidationOptionsBuilder
Static helper class to build validation options.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getCaptchaData()
Returns the data associated with the captcha component present in the adaptive formjava.lang.String
getContextPath()
Returns the context path setjava.lang.String
getData()
Returns the submitted adaptive form datajava.lang.String
getFileAttachmentMap()
Returns the file attachment mapResource
getFormContainerResource()
Returns the adaptive form container resource.java.lang.String
getLocale()
Returns the locale setjava.lang.String
getServerUrl()
Returns the adaptive form server URL configured.java.lang.String
getSomExpression()
Returns the panel som expression.
-
-
-
Method Detail
-
getFormContainerResource
public Resource getFormContainerResource()
Returns the adaptive form container resource.- Returns:
- Adaptive Form container resource.
-
getSomExpression
public java.lang.String getSomExpression()
Returns the panel som expression.- Returns:
- Panel som expression
-
getData
public java.lang.String getData()
Returns the submitted adaptive form data- Returns:
- string representing the adaptive form data
-
getCaptchaData
public java.lang.String getCaptchaData()
Returns the data associated with the captcha component present in the adaptive form- Returns:
- string representing the captcha data
-
getServerUrl
public java.lang.String getServerUrl()
Returns the adaptive form server URL configured. This server URL is used to convert relative URL to absolute URL during server side validation- Returns:
- string representing the adaptive form server url
-
getContextPath
public java.lang.String getContextPath()
Returns the context path set- Returns:
- string representing the context path
-
getLocale
public java.lang.String getLocale()
Returns the locale set- Returns:
- string representing the locale
-
getFileAttachmentMap
public java.lang.String getFileAttachmentMap()
Returns the file attachment map- Returns:
- string representing the file attachment map
-
-