Interface Callback
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
AbstractCallback,AbstractPromptCallback,AbstractValidatedCallback,AttributeInputCallback,BooleanAttributeInputCallback,ChoiceCallback,ConfirmationCallback,ConsentMappingCallback,DeviceProfileCallback,HiddenValueCallback,IdPCallback,KbaCreateCallback,MetadataCallback,NameCallback,NumberAttributeInputCallback,PasswordCallback,PollingWaitCallback,ReCaptchaCallback,SelectIdPCallback,StringAttributeInputCallback,SuspendedTextOutputCallback,TermsAndConditionsCallback,TextOutputCallback,ValidatedPasswordCallback,ValidatedUsernameCallback,WebAuthnAuthenticationCallback,WebAuthnRegistrationCallback
public interface Callback extends java.io.SerializableBase Callback interface
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intget_id()Return the unique id for this callback.java.lang.StringgetContent()Return the raw content of the Callback.java.lang.StringgetType()Return the type of the Callback, the type name should align with the Callback type returned from AM
-
-
-
Method Detail
-
get_id
int get_id()
Return the unique id for this callback. The id only available with Callback that using PageCallback- Returns:
- The callback id.
-
getContent
java.lang.String getContent()
Return the raw content of the Callback.
-
getType
java.lang.String getType()
Return the type of the Callback, the type name should align with the Callback type returned from AM
-
-