Class AlgorithmIdentifierType
- java.lang.Object
-
- org.apache.xml.security.binding.xmlenc11.AlgorithmIdentifierType
-
- Direct Known Subclasses:
MGFType
,PRFAlgorithmIdentifierType
public class AlgorithmIdentifierType extends java.lang.Object
Java class for AlgorithmIdentifierType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="AlgorithmIdentifierType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Parameters" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/> </sequence> <attribute name="Algorithm" 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
algorithm
protected java.lang.Object
parameters
-
Constructor Summary
Constructors Constructor Description AlgorithmIdentifierType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getAlgorithm()
Gets the value of the algorithm property.java.lang.Object
getParameters()
Gets the value of the parameters property.void
setAlgorithm(java.lang.String value)
Sets the value of the algorithm property.void
setParameters(java.lang.Object value)
Sets the value of the parameters property.
-
-
-
Method Detail
-
getParameters
public java.lang.Object getParameters()
Gets the value of the parameters property.- Returns:
- possible object is
Object
-
setParameters
public void setParameters(java.lang.Object value)
Sets the value of the parameters property.- Parameters:
value
- allowed object isObject
-
getAlgorithm
public java.lang.String getAlgorithm()
Gets the value of the algorithm property.- Returns:
- possible object is
String
-
setAlgorithm
public void setAlgorithm(java.lang.String value)
Sets the value of the algorithm property.- Parameters:
value
- allowed object isString
-
-