Package org.sourceid.protocol.dsig10.xml
Interface SignedInfoType
-
- All Superinterfaces:
XmlObject,XmlTokenSource
public interface SignedInfoType extends XmlObject
An XML SignedInfoType(@http://www.w3.org/2000/09/xmldsig#). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classSignedInfoType.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 CanonicalizationMethodTypeaddNewCanonicalizationMethod()Appends and returns a new empty "CanonicalizationMethod" elementReferenceTypeaddNewReference()Appends and returns a new empty value (as xml) as the last "Reference" elementSignatureMethodTypeaddNewSignatureMethod()Appends and returns a new empty "SignatureMethod" elementCanonicalizationMethodTypegetCanonicalizationMethod()Gets the "CanonicalizationMethod" elementStringgetId()Gets the "Id" attributeReferenceType[]getReferenceArray()Gets array of all "Reference" elementsReferenceTypegetReferenceArray(int i)Gets ith "Reference" elementSignatureMethodTypegetSignatureMethod()Gets the "SignatureMethod" elementReferenceTypeinsertNewReference(int i)Inserts and returns a new empty value (as xml) as the ith "Reference" elementbooleanisSetId()True if has "Id" attributevoidremoveReference(int i)Removes the ith "Reference" elementvoidsetCanonicalizationMethod(CanonicalizationMethodType canonicalizationMethod)Sets the "CanonicalizationMethod" elementvoidsetId(String id)Sets the "Id" attributevoidsetReferenceArray(int i, ReferenceType reference)Sets ith "Reference" elementvoidsetReferenceArray(ReferenceType[] referenceArray)Sets array of all "Reference" elementvoidsetSignatureMethod(SignatureMethodType signatureMethod)Sets the "SignatureMethod" elementintsizeOfReferenceArray()Returns number of "Reference" elementvoidunsetId()Unsets the "Id" attributeXmlIDxgetId()Gets (as xml) the "Id" attributevoidxsetId(XmlID id)Sets (as xml) the "Id" attribute-
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
-
getCanonicalizationMethod
CanonicalizationMethodType getCanonicalizationMethod()
Gets the "CanonicalizationMethod" element
-
setCanonicalizationMethod
void setCanonicalizationMethod(CanonicalizationMethodType canonicalizationMethod)
Sets the "CanonicalizationMethod" element
-
addNewCanonicalizationMethod
CanonicalizationMethodType addNewCanonicalizationMethod()
Appends and returns a new empty "CanonicalizationMethod" element
-
getSignatureMethod
SignatureMethodType getSignatureMethod()
Gets the "SignatureMethod" element
-
setSignatureMethod
void setSignatureMethod(SignatureMethodType signatureMethod)
Sets the "SignatureMethod" element
-
addNewSignatureMethod
SignatureMethodType addNewSignatureMethod()
Appends and returns a new empty "SignatureMethod" element
-
getReferenceArray
ReferenceType[] getReferenceArray()
Gets array of all "Reference" elements
-
getReferenceArray
ReferenceType getReferenceArray(int i)
Gets ith "Reference" element
-
sizeOfReferenceArray
int sizeOfReferenceArray()
Returns number of "Reference" element
-
setReferenceArray
void setReferenceArray(ReferenceType[] referenceArray)
Sets array of all "Reference" element
-
setReferenceArray
void setReferenceArray(int i, ReferenceType reference)Sets ith "Reference" element
-
insertNewReference
ReferenceType insertNewReference(int i)
Inserts and returns a new empty value (as xml) as the ith "Reference" element
-
addNewReference
ReferenceType addNewReference()
Appends and returns a new empty value (as xml) as the last "Reference" element
-
removeReference
void removeReference(int i)
Removes the ith "Reference" element
-
getId
String getId()
Gets the "Id" attribute
-
xgetId
XmlID xgetId()
Gets (as xml) the "Id" attribute
-
isSetId
boolean isSetId()
True if has "Id" attribute
-
setId
void setId(String id)
Sets the "Id" attribute
-
xsetId
void xsetId(XmlID id)
Sets (as xml) the "Id" attribute
-
unsetId
void unsetId()
Unsets the "Id" attribute
-
-