Package com.pingidentity.sdk.oobauth
Class OOBAuthRequestContext.RequestingApplication
- java.lang.Object
-
- com.pingidentity.sdk.oobauth.OOBAuthRequestContext.RequestingApplication
-
- Enclosing class:
- OOBAuthRequestContext
public static class OOBAuthRequestContext.RequestingApplication extends Object
Some general information about the calling application or client.
-
-
Constructor Summary
Constructors Constructor Description RequestingApplication()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetId()Gets the application or client identifier.StringgetLogoUrl()Gets the logo URL of application or client.StringgetName()Gets the application or client name.voidsetId(String id)Sets the id.voidsetLogoUrl(String logoUrl)Sets the logo URL.voidsetName(String name)Sets the name.
-
-
-
Method Detail
-
getId
public String getId()
Gets the application or client identifier.- Returns:
- an identifier for the application.
-
setId
public void setId(String id)
Sets the id.- Parameters:
id- the identifier
-
getName
public String getName()
Gets the application or client name.- Returns:
- the name of the application.
-
setName
public void setName(String name)
Sets the name.- Parameters:
name- the name
-
getLogoUrl
public String getLogoUrl()
Gets the logo URL of application or client.- Returns:
- the logo URL of the application, if defined. Null otherwise.
-
setLogoUrl
public void setLogoUrl(String logoUrl)
Sets the logo URL.- Parameters:
logoUrl- the logo URL
-
-