Class ClientRepresentation
- java.lang.Object
-
- org.keycloak.representations.account.ClientRepresentation
-
public class ClientRepresentation extends Object
Created by st on 29/03/17.
-
-
Constructor Summary
Constructors Constructor Description ClientRepresentation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getBaseUrl()
String
getClientId()
String
getClientName()
ConsentRepresentation
getConsent()
String
getDescription()
String
getEffectiveUrl()
String
getLogoUri()
String
getPolicyUri()
String
getRootUrl()
String
getTosUri()
boolean
isInUse()
boolean
isOfflineAccess()
boolean
isUserConsentRequired()
void
setBaseUrl(String baseUrl)
void
setClientId(String clientId)
void
setClientName(String clientName)
void
setConsent(ConsentRepresentation consent)
void
setDescription(String description)
void
setEffectiveUrl(String effectiveUrl)
void
setInUse(boolean inUse)
void
setLogoUri(String logoUri)
void
setOfflineAccess(boolean offlineAccess)
void
setPolicyUri(String policyUri)
void
setRootUrl(String rootUrl)
void
setTosUri(String tosUri)
void
setUserConsentRequired(boolean userConsentRequired)
-
-
-
Method Detail
-
getClientId
public String getClientId()
-
setClientId
public void setClientId(String clientId)
-
getClientName
public String getClientName()
-
setClientName
public void setClientName(String clientName)
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String description)
-
isUserConsentRequired
public boolean isUserConsentRequired()
-
setUserConsentRequired
public void setUserConsentRequired(boolean userConsentRequired)
-
isInUse
public boolean isInUse()
-
setInUse
public void setInUse(boolean inUse)
-
isOfflineAccess
public boolean isOfflineAccess()
-
setOfflineAccess
public void setOfflineAccess(boolean offlineAccess)
-
getRootUrl
public String getRootUrl()
-
setRootUrl
public void setRootUrl(String rootUrl)
-
getBaseUrl
public String getBaseUrl()
-
setBaseUrl
public void setBaseUrl(String baseUrl)
-
getEffectiveUrl
public String getEffectiveUrl()
-
setEffectiveUrl
public void setEffectiveUrl(String effectiveUrl)
-
getConsent
public ConsentRepresentation getConsent()
-
setConsent
public void setConsent(ConsentRepresentation consent)
-
getLogoUri
public String getLogoUri()
-
setLogoUri
public void setLogoUri(String logoUri)
-
getPolicyUri
public String getPolicyUri()
-
setPolicyUri
public void setPolicyUri(String policyUri)
-
getTosUri
public String getTosUri()
-
setTosUri
public void setTosUri(String tosUri)
-
-