Class SpaceJwk
- java.lang.Object
-
- jetbrains.buildServer.serverSide.oauth.space.pojo.SpaceJwk
-
public class SpaceJwk extends Object
Simple JWK representation for use with Space. Currently only suitable for RSA type keys. Should probably be replaced with a general purpose JWK(S) parser.
-
-
Constructor Summary
Constructors Constructor Description SpaceJwk()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAlg()StringgetE()StringgetKid()StringgetKty()StringgetN()voidsetAlg(String alg)voidsetE(String e)voidsetKid(String kid)voidsetKty(String kty)voidsetN(String n)StringtoString()
-
-
-
Method Detail
-
getKid
public String getKid()
-
setKid
public void setKid(String kid)
-
getKty
public String getKty()
-
setKty
public void setKty(String kty)
-
getAlg
public String getAlg()
-
setAlg
public void setAlg(String alg)
-
getE
public String getE()
-
setE
public void setE(String e)
-
getN
public String getN()
-
setN
public void setN(String n)
-
-