Package org.apache.cxf.sts.request
Class ReceivedCredential
- java.lang.Object
-
- org.apache.cxf.sts.request.ReceivedCredential
-
public class ReceivedCredential extends Object
This class represents a received credential. It can contain either an X509Certificate or PublicKey.
-
-
Constructor Summary
Constructors Constructor Description ReceivedCredential()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PublicKeygetPublicKey()X509CertificategetX509Cert()voidsetPublicKey(PublicKey publicKey)voidsetX509Cert(X509Certificate x509Cert)
-
-
-
Method Detail
-
getX509Cert
public X509Certificate getX509Cert()
-
setX509Cert
public void setX509Cert(X509Certificate x509Cert)
-
getPublicKey
public PublicKey getPublicKey()
-
setPublicKey
public void setPublicKey(PublicKey publicKey)
-
-