Interface EncryptionMethodType
-
- All Superinterfaces:
XmlObject,XmlTokenSource
public interface EncryptionMethodType extends XmlObject
An XML EncryptionMethodType(@http://www.w3.org/2001/04/xmlenc#). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classEncryptionMethodType.FactoryA factory class with static methods for creating instances of this type.
-
Field Summary
Fields Modifier and Type Field Description static SchemaTypetype-
Fields inherited from interface org.apache.xmlbeans.XmlObject
EQUAL, GREATER_THAN, LESS_THAN, NOT_EQUAL
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAlgorithm()Gets the "Algorithm" attributeBigIntegergetKeySize()Gets the "KeySize" elementbyte[]getOAEPparams()Gets the "OAEPparams" elementbooleanisSetKeySize()True if has "KeySize" elementbooleanisSetOAEPparams()True if has "OAEPparams" elementvoidsetAlgorithm(String algorithm)Sets the "Algorithm" attributevoidsetKeySize(BigInteger keySize)Sets the "KeySize" elementvoidsetOAEPparams(byte[] oaePparams)Sets the "OAEPparams" elementvoidunsetKeySize()Unsets the "KeySize" elementvoidunsetOAEPparams()Unsets the "OAEPparams" elementXmlAnyURIxgetAlgorithm()Gets (as xml) the "Algorithm" attributeKeySizeTypexgetKeySize()Gets (as xml) the "KeySize" elementXmlBase64BinaryxgetOAEPparams()Gets (as xml) the "OAEPparams" elementvoidxsetAlgorithm(XmlAnyURI algorithm)Sets (as xml) the "Algorithm" attributevoidxsetKeySize(KeySizeType keySize)Sets (as xml) the "KeySize" elementvoidxsetOAEPparams(XmlBase64Binary oaePparams)Sets (as xml) the "OAEPparams" element-
Methods inherited from interface org.apache.xmlbeans.XmlObject
changeType, compareTo, compareValue, copy, copy, execQuery, execQuery, isImmutable, isNil, schemaType, selectAttribute, selectAttribute, selectAttributes, selectChildren, selectChildren, selectChildren, selectPath, selectPath, set, setNil, substitute, toString, validate, validate, valueEquals, valueHashCode
-
Methods inherited from interface org.apache.xmlbeans.XmlTokenSource
documentProperties, dump, getDomNode, monitor, newCursor, newDomNode, newDomNode, newInputStream, newInputStream, newReader, newReader, newXMLInputStream, newXMLInputStream, newXMLStreamReader, newXMLStreamReader, save, save, save, save, save, save, save, save, xmlText, xmlText
-
-
-
-
Field Detail
-
type
static final SchemaType type
-
-
Method Detail
-
getKeySize
BigInteger getKeySize()
Gets the "KeySize" element
-
xgetKeySize
KeySizeType xgetKeySize()
Gets (as xml) the "KeySize" element
-
isSetKeySize
boolean isSetKeySize()
True if has "KeySize" element
-
setKeySize
void setKeySize(BigInteger keySize)
Sets the "KeySize" element
-
xsetKeySize
void xsetKeySize(KeySizeType keySize)
Sets (as xml) the "KeySize" element
-
unsetKeySize
void unsetKeySize()
Unsets the "KeySize" element
-
getOAEPparams
byte[] getOAEPparams()
Gets the "OAEPparams" element
-
xgetOAEPparams
XmlBase64Binary xgetOAEPparams()
Gets (as xml) the "OAEPparams" element
-
isSetOAEPparams
boolean isSetOAEPparams()
True if has "OAEPparams" element
-
setOAEPparams
void setOAEPparams(byte[] oaePparams)
Sets the "OAEPparams" element
-
xsetOAEPparams
void xsetOAEPparams(XmlBase64Binary oaePparams)
Sets (as xml) the "OAEPparams" element
-
unsetOAEPparams
void unsetOAEPparams()
Unsets the "OAEPparams" element
-
getAlgorithm
String getAlgorithm()
Gets the "Algorithm" attribute
-
xgetAlgorithm
XmlAnyURI xgetAlgorithm()
Gets (as xml) the "Algorithm" attribute
-
setAlgorithm
void setAlgorithm(String algorithm)
Sets the "Algorithm" attribute
-
xsetAlgorithm
void xsetAlgorithm(XmlAnyURI algorithm)
Sets (as xml) the "Algorithm" attribute
-
-