Package org.apache.cxf.xkms.model.xkms
Class RSAKeyPairType
- java.lang.Object
-
- org.apache.cxf.xkms.model.xkms.RSAKeyPairType
-
public class RSAKeyPairType extends Object
Java class for RSAKeyPairType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="RSAKeyPairType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{http://www.w3.org/2002/03/xkms#}Modulus"/> <element ref="{http://www.w3.org/2002/03/xkms#}Exponent"/> <element ref="{http://www.w3.org/2002/03/xkms#}P"/> <element ref="{http://www.w3.org/2002/03/xkms#}Q"/> <element ref="{http://www.w3.org/2002/03/xkms#}DP"/> <element ref="{http://www.w3.org/2002/03/xkms#}DQ"/> <element ref="{http://www.w3.org/2002/03/xkms#}InverseQ"/> <element ref="{http://www.w3.org/2002/03/xkms#}D"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description RSAKeyPairType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]getD()Gets the value of the d property.byte[]getDP()Gets the value of the dp property.byte[]getDQ()Gets the value of the dq property.byte[]getExponent()Gets the value of the exponent property.byte[]getInverseQ()Gets the value of the inverseQ property.byte[]getModulus()Gets the value of the modulus property.byte[]getP()Gets the value of the p property.byte[]getQ()Gets the value of the q property.voidsetD(byte[] value)Sets the value of the d property.voidsetDP(byte[] value)Sets the value of the dp property.voidsetDQ(byte[] value)Sets the value of the dq property.voidsetExponent(byte[] value)Sets the value of the exponent property.voidsetInverseQ(byte[] value)Sets the value of the inverseQ property.voidsetModulus(byte[] value)Sets the value of the modulus property.voidsetP(byte[] value)Sets the value of the p property.voidsetQ(byte[] value)Sets the value of the q property.
-
-
-
Method Detail
-
getModulus
public byte[] getModulus()
Gets the value of the modulus property.- Returns:
- possible object is byte[]
-
setModulus
public void setModulus(byte[] value)
Sets the value of the modulus property.- Parameters:
value- allowed object is byte[]
-
getExponent
public byte[] getExponent()
Gets the value of the exponent property.- Returns:
- possible object is byte[]
-
setExponent
public void setExponent(byte[] value)
Sets the value of the exponent property.- Parameters:
value- allowed object is byte[]
-
getP
public byte[] getP()
Gets the value of the p property.- Returns:
- possible object is byte[]
-
setP
public void setP(byte[] value)
Sets the value of the p property.- Parameters:
value- allowed object is byte[]
-
getQ
public byte[] getQ()
Gets the value of the q property.- Returns:
- possible object is byte[]
-
setQ
public void setQ(byte[] value)
Sets the value of the q property.- Parameters:
value- allowed object is byte[]
-
getDP
public byte[] getDP()
Gets the value of the dp property.- Returns:
- possible object is byte[]
-
setDP
public void setDP(byte[] value)
Sets the value of the dp property.- Parameters:
value- allowed object is byte[]
-
getDQ
public byte[] getDQ()
Gets the value of the dq property.- Returns:
- possible object is byte[]
-
setDQ
public void setDQ(byte[] value)
Sets the value of the dq property.- Parameters:
value- allowed object is byte[]
-
getInverseQ
public byte[] getInverseQ()
Gets the value of the inverseQ property.- Returns:
- possible object is byte[]
-
setInverseQ
public void setInverseQ(byte[] value)
Sets the value of the inverseQ property.- Parameters:
value- allowed object is byte[]
-
getD
public byte[] getD()
Gets the value of the d property.- Returns:
- possible object is byte[]
-
setD
public void setD(byte[] value)
Sets the value of the d property.- Parameters:
value- allowed object is byte[]
-
-