Package org.keycloak.representations.idm
Class PublishedRealmRepresentation
- java.lang.Object
-
- org.keycloak.representations.idm.PublishedRealmRepresentation
-
public class PublishedRealmRepresentation extends Object
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
-
-
Field Summary
Fields Modifier and Type Field Description protected String
accountServiceUrl
protected int
notBefore
protected PublicKey
publicKey
protected String
publicKeyPem
protected String
realm
protected String
tokenServiceUrl
-
Constructor Summary
Constructors Constructor Description PublishedRealmRepresentation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAccountServiceUrl()
int
getNotBefore()
PublicKey
getPublicKey()
String
getPublicKeyPem()
String
getRealm()
String
getTokenServiceUrl()
void
setAccountServiceUrl(String accountServiceUrl)
void
setNotBefore(int notBefore)
void
setPublicKey(PublicKey publicKey)
void
setPublicKeyPem(String publicKeyPem)
void
setRealm(String realm)
void
setTokenServiceUrl(String tokenServiceUrl)
-
-
-
Method Detail
-
getRealm
public String getRealm()
-
setRealm
public void setRealm(String realm)
-
getPublicKeyPem
public String getPublicKeyPem()
-
setPublicKeyPem
public void setPublicKeyPem(String publicKeyPem)
-
getPublicKey
public PublicKey getPublicKey()
-
setPublicKey
public void setPublicKey(PublicKey publicKey)
-
getTokenServiceUrl
public String getTokenServiceUrl()
-
setTokenServiceUrl
public void setTokenServiceUrl(String tokenServiceUrl)
-
getAccountServiceUrl
public String getAccountServiceUrl()
-
setAccountServiceUrl
public void setAccountServiceUrl(String accountServiceUrl)
-
getNotBefore
public int getNotBefore()
-
setNotBefore
public void setNotBefore(int notBefore)
-
-