Class ECParametersType
- java.lang.Object
-
- org.apache.xml.security.binding.xmldsig11.ECParametersType
-
public class ECParametersType extends java.lang.ObjectJava class for ECParametersType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ECParametersType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="FieldID" type="{http://www.w3.org/2009/xmldsig11#}FieldIDType"/> <element name="Curve" type="{http://www.w3.org/2009/xmldsig11#}CurveType"/> <element name="Base" type="{http://www.w3.org/2009/xmldsig11#}ECPointType"/> <element name="Order" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/> <element name="CoFactor" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/> <element name="ValidationData" type="{http://www.w3.org/2009/xmldsig11#}ECValidationDataType" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected byte[]baseprotected java.math.BigIntegercoFactorprotected CurveTypecurveprotected FieldIDTypefieldIDprotected byte[]orderprotected ECValidationDataTypevalidationData
-
Constructor Summary
Constructors Constructor Description ECParametersType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]getBase()Gets the value of the base property.java.math.BigIntegergetCoFactor()Gets the value of the coFactor property.CurveTypegetCurve()Gets the value of the curve property.FieldIDTypegetFieldID()Gets the value of the fieldID property.byte[]getOrder()Gets the value of the order property.ECValidationDataTypegetValidationData()Gets the value of the validationData property.voidsetBase(byte[] value)Sets the value of the base property.voidsetCoFactor(java.math.BigInteger value)Sets the value of the coFactor property.voidsetCurve(CurveType value)Sets the value of the curve property.voidsetFieldID(FieldIDType value)Sets the value of the fieldID property.voidsetOrder(byte[] value)Sets the value of the order property.voidsetValidationData(ECValidationDataType value)Sets the value of the validationData property.
-
-
-
Field Detail
-
fieldID
protected FieldIDType fieldID
-
curve
protected CurveType curve
-
base
protected byte[] base
-
order
protected byte[] order
-
coFactor
protected java.math.BigInteger coFactor
-
validationData
protected ECValidationDataType validationData
-
-
Method Detail
-
getFieldID
public FieldIDType getFieldID()
Gets the value of the fieldID property.- Returns:
- possible object is
FieldIDType
-
setFieldID
public void setFieldID(FieldIDType value)
Sets the value of the fieldID property.- Parameters:
value- allowed object isFieldIDType
-
getCurve
public CurveType getCurve()
Gets the value of the curve property.- Returns:
- possible object is
CurveType
-
setCurve
public void setCurve(CurveType value)
Sets the value of the curve property.- Parameters:
value- allowed object isCurveType
-
getBase
public byte[] getBase()
Gets the value of the base property.- Returns:
- possible object is byte[]
-
setBase
public void setBase(byte[] value)
Sets the value of the base property.- Parameters:
value- allowed object is byte[]
-
getOrder
public byte[] getOrder()
Gets the value of the order property.- Returns:
- possible object is byte[]
-
setOrder
public void setOrder(byte[] value)
Sets the value of the order property.- Parameters:
value- allowed object is byte[]
-
getCoFactor
public java.math.BigInteger getCoFactor()
Gets the value of the coFactor property.- Returns:
- possible object is
BigInteger
-
setCoFactor
public void setCoFactor(java.math.BigInteger value)
Sets the value of the coFactor property.- Parameters:
value- allowed object isBigInteger
-
getValidationData
public ECValidationDataType getValidationData()
Gets the value of the validationData property.- Returns:
- possible object is
ECValidationDataType
-
setValidationData
public void setValidationData(ECValidationDataType value)
Sets the value of the validationData property.- Parameters:
value- allowed object isECValidationDataType
-
-