Class CipherDataType
- java.lang.Object
-
- org.apache.xml.security.binding.xmlenc.CipherDataType
-
public class CipherDataType extends java.lang.Object
Java class for CipherDataType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="CipherDataType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <choice> <element ref="{http://www.w3.org/2001/04/xmlenc#}CipherValue"/> <element ref="{http://www.w3.org/2001/04/xmlenc#}CipherReference"/> </choice> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected CipherReferenceType
cipherReference
protected CipherValueType
cipherValue
-
Constructor Summary
Constructors Constructor Description CipherDataType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CipherReferenceType
getCipherReference()
Gets the value of the cipherReference property.CipherValueType
getCipherValue()
Gets the value of the cipherValue property.void
setCipherReference(CipherReferenceType value)
Sets the value of the cipherReference property.void
setCipherValue(CipherValueType value)
Sets the value of the cipherValue property.
-
-
-
Field Detail
-
cipherValue
protected CipherValueType cipherValue
-
cipherReference
protected CipherReferenceType cipherReference
-
-
Method Detail
-
getCipherValue
public CipherValueType getCipherValue()
Gets the value of the cipherValue property.- Returns:
- possible object is
CipherValueType
-
setCipherValue
public void setCipherValue(CipherValueType value)
Sets the value of the cipherValue property.- Parameters:
value
- allowed object isCipherValueType
-
getCipherReference
public CipherReferenceType getCipherReference()
Gets the value of the cipherReference property.- Returns:
- possible object is
CipherReferenceType
-
setCipherReference
public void setCipherReference(CipherReferenceType value)
Sets the value of the cipherReference property.- Parameters:
value
- allowed object isCipherReferenceType
-
-