Class FormData
- java.lang.Object
-
- io.getlime.security.powerauth.lib.mtoken.model.entity.FormData
-
public class FormData extends Object
Class representing displayable attributes for mobile token data.- Author:
- Petr Dvorak, petr@wultra.com
-
-
Constructor Summary
Constructors Constructor Description FormData()Default constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Attribute>getAttributes()Get form data attributes.StringgetMessage()Get localized operation message.StringgetTitle()Get localized operation title message.voidsetAttributes(List<Attribute> attributes)Set form data attributes.voidsetMessage(String message)Set localized operation message.voidsetTitle(String title)Set localized operation title message.
-
-
-
Method Detail
-
getTitle
public String getTitle()
Get localized operation title message.- Returns:
- Title message.
-
setTitle
public void setTitle(String title)
Set localized operation title message.- Parameters:
title- Title message.
-
getMessage
public String getMessage()
Get localized operation message.- Returns:
- Operation message.
-
setMessage
public void setMessage(String message)
Set localized operation message.- Parameters:
message- Operation message.
-
getAttributes
public List<Attribute> getAttributes()
Get form data attributes.- Returns:
- Form data attributes.
-
-