Class ECKeyValueType
- java.lang.Object
-
- org.apache.xml.security.binding.xmldsig11.ECKeyValueType
-
public class ECKeyValueType extends java.lang.Object
Java class for ECKeyValueType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ECKeyValueType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <choice> <element name="ECParameters" type="{http://www.w3.org/2009/xmldsig11#}ECParametersType"/> <element name="NamedCurve" type="{http://www.w3.org/2009/xmldsig11#}NamedCurveType"/> </choice> <element name="PublicKey" type="{http://www.w3.org/2009/xmldsig11#}ECPointType"/> </sequence> <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected ECParametersType
ecParameters
protected java.lang.String
id
protected NamedCurveType
namedCurve
protected byte[]
publicKey
-
Constructor Summary
Constructors Constructor Description ECKeyValueType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ECParametersType
getECParameters()
Gets the value of the ecParameters property.java.lang.String
getId()
Gets the value of the id property.NamedCurveType
getNamedCurve()
Gets the value of the namedCurve property.byte[]
getPublicKey()
Gets the value of the publicKey property.void
setECParameters(ECParametersType value)
Sets the value of the ecParameters property.void
setId(java.lang.String value)
Sets the value of the id property.void
setNamedCurve(NamedCurveType value)
Sets the value of the namedCurve property.void
setPublicKey(byte[] value)
Sets the value of the publicKey property.
-
-
-
Field Detail
-
ecParameters
protected ECParametersType ecParameters
-
namedCurve
protected NamedCurveType namedCurve
-
publicKey
protected byte[] publicKey
-
id
protected java.lang.String id
-
-
Method Detail
-
getECParameters
public ECParametersType getECParameters()
Gets the value of the ecParameters property.- Returns:
- possible object is
ECParametersType
-
setECParameters
public void setECParameters(ECParametersType value)
Sets the value of the ecParameters property.- Parameters:
value
- allowed object isECParametersType
-
getNamedCurve
public NamedCurveType getNamedCurve()
Gets the value of the namedCurve property.- Returns:
- possible object is
NamedCurveType
-
setNamedCurve
public void setNamedCurve(NamedCurveType value)
Sets the value of the namedCurve property.- Parameters:
value
- allowed object isNamedCurveType
-
getPublicKey
public byte[] getPublicKey()
Gets the value of the publicKey property.- Returns:
- possible object is byte[]
-
setPublicKey
public void setPublicKey(byte[] value)
Sets the value of the publicKey property.- Parameters:
value
- allowed object is byte[]
-
getId
public java.lang.String getId()
Gets the value of the id property.- Returns:
- possible object is
String
-
setId
public void setId(java.lang.String value)
Sets the value of the id property.- Parameters:
value
- allowed object isString
-
-