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 String
getAlg()
String
getE()
String
getKid()
String
getKty()
String
getN()
void
setAlg(String alg)
void
setE(String e)
void
setKid(String kid)
void
setKty(String kty)
void
setN(String n)
String
toString()
-
-
-
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)
-
-