Package org.gcube.common.keycloak.model
Class PublishedRealmRepresentation
- java.lang.Object
-
- org.gcube.common.keycloak.model.PublishedRealmRepresentation
-
public class PublishedRealmRepresentation extends Object
- Author:
- Bill Burke, (modified by) Mauro Mugnaini
-
-
Field Summary
Fields Modifier and Type Field Description protected StringaccountServiceUrlprotected intnotBeforeprotected RSAPublicKeypublicKeyprotected StringpublicKeyPemprotected Stringrealmprotected StringtokenServiceUrl
-
Constructor Summary
Constructors Constructor Description PublishedRealmRepresentation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAccountServiceUrl()intgetNotBefore()RSAPublicKeygetPublicKey()StringgetPublicKeyPem()StringgetRealm()StringgetTokenServiceUrl()voidsetAccountServiceUrl(String accountServiceUrl)voidsetNotBefore(int notBefore)voidsetPublicKey(RSAPublicKey publicKey)voidsetPublicKeyPem(String publicKeyPem)voidsetRealm(String realm)voidsetTokenServiceUrl(String tokenServiceUrl)
-
-
-
Field Detail
-
realm
protected String realm
-
publicKeyPem
protected String publicKeyPem
-
tokenServiceUrl
protected String tokenServiceUrl
-
accountServiceUrl
protected String accountServiceUrl
-
notBefore
protected int notBefore
-
publicKey
protected transient volatile RSAPublicKey publicKey
-
-
Method Detail
-
getRealm
public String getRealm()
-
setRealm
public void setRealm(String realm)
-
getPublicKeyPem
public String getPublicKeyPem()
-
setPublicKeyPem
public void setPublicKeyPem(String publicKeyPem)
-
getPublicKey
public RSAPublicKey getPublicKey()
-
setPublicKey
public void setPublicKey(RSAPublicKey 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)
-
-