src/share/classes/javax/xml/crypto/dsig/Manifest.java

Print this page

        

*** 33,51 **** /** * A representation of the XML <code>Manifest</code> element as defined in * the <a href="http://www.w3.org/TR/xmldsig-core/"> * W3C Recommendation for XML-Signature Syntax and Processing</a>. * The XML Schema Definition is defined as: ! * <pre><code> ! * &lt;element name="Manifest" type="ds:ManifestType"/&gt; ! * &lt;complexType name="ManifestType"&gt; ! * &lt;sequence> ! * &lt;element ref="ds:Reference" maxOccurs="unbounded"/&gt; ! * &lt;/sequence&gt; ! * &lt;attribute name="Id" type="ID" use="optional"/&gt; ! * &lt;/complexType&gt; ! * </code></pre> * * A <code>Manifest</code> instance may be created by invoking * one of the {@link XMLSignatureFactory#newManifest newManifest} * methods of the {@link XMLSignatureFactory} class; for example: * --- 33,51 ---- /** * A representation of the XML <code>Manifest</code> element as defined in * the <a href="http://www.w3.org/TR/xmldsig-core/"> * W3C Recommendation for XML-Signature Syntax and Processing</a>. * The XML Schema Definition is defined as: ! * <pre>{@code ! * <element name="Manifest" type="ds:ManifestType"/> ! * <complexType name="ManifestType"> ! * <sequence> ! * <element ref="ds:Reference" maxOccurs="unbounded"/> ! * </sequence> ! * <attribute name="Id" type="ID" use="optional"/> ! * </complexType> ! * }</pre> * * A <code>Manifest</code> instance may be created by invoking * one of the {@link XMLSignatureFactory#newManifest newManifest} * methods of the {@link XMLSignatureFactory} class; for example: *