Class PartyInfo
- java.lang.Object
-
- io.getlime.security.powerauth.lib.mtoken.model.entity.PartyInfo
-
public class PartyInfo extends Object
Class representing party information.- Author:
- Roman Strobl, roman.strobl@wultra.com
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDescription()Get party description.StringgetLogoUrl()Get URL with party logo.StringgetName()Get party name.StringgetWebsiteUrl()Get party website URL.voidsetDescription(String description)Set party description.voidsetLogoUrl(String logoUrl)Set URL with party logo.voidsetName(String name)Set party name.voidsetWebsiteUrl(String websiteUrl)Set party website URL.
-
-
-
Method Detail
-
getLogoUrl
public String getLogoUrl()
Get URL with party logo.- Returns:
- URL with party logo.
-
setLogoUrl
public void setLogoUrl(String logoUrl)
Set URL with party logo.- Parameters:
logoUrl- URL with party logo.
-
getName
public String getName()
Get party name.- Returns:
- Party name.
-
setName
public void setName(String name)
Set party name.- Parameters:
name- Party name.
-
getDescription
public String getDescription()
Get party description.- Returns:
- Party description.
-
setDescription
public void setDescription(String description)
Set party description.- Parameters:
description- Party description.
-
getWebsiteUrl
public String getWebsiteUrl()
Get party website URL.- Returns:
- Party website URL.
-
setWebsiteUrl
public void setWebsiteUrl(String websiteUrl)
Set party website URL.- Parameters:
websiteUrl- Party website URL.
-
-