Class ECValidationDataType
- java.lang.Object
-
- org.apache.xml.security.binding.xmldsig11.ECValidationDataType
-
public class ECValidationDataType extends java.lang.Object
Java class for ECValidationDataType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ECValidationDataType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="seed" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/> </sequence> <attribute name="hashAlgorithm" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.String
hashAlgorithm
protected byte[]
seed
-
Constructor Summary
Constructors Constructor Description ECValidationDataType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getHashAlgorithm()
Gets the value of the hashAlgorithm property.byte[]
getSeed()
Gets the value of the seed property.void
setHashAlgorithm(java.lang.String value)
Sets the value of the hashAlgorithm property.void
setSeed(byte[] value)
Sets the value of the seed property.
-
-
-
Method Detail
-
getSeed
public byte[] getSeed()
Gets the value of the seed property.- Returns:
- possible object is byte[]
-
setSeed
public void setSeed(byte[] value)
Sets the value of the seed property.- Parameters:
value
- allowed object is byte[]
-
getHashAlgorithm
public java.lang.String getHashAlgorithm()
Gets the value of the hashAlgorithm property.- Returns:
- possible object is
String
-
setHashAlgorithm
public void setHashAlgorithm(java.lang.String value)
Sets the value of the hashAlgorithm property.- Parameters:
value
- allowed object isString
-
-