01: //
02: // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0.5-b16-fcs
03: // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
04: // Any modifications to this file will be lost upon recompilation of the source schema.
05: // Generated on: 2005.09.05 at 03:09:41 PM IST
06: //
07:
08: package com.sun.xml.wss.saml.internal.saml11.jaxb10;
09:
10: /**
11: * Java content class for DigestValue element declaration.
12: * <p>The following schema fragment specifies the expected content contained within this java content object. (defined at http://www.w3.org/TR/xmldsig-core/xmldsig-core-schema.xsd line 135)
13: * <p>
14: * <pre>
15: * <element name="DigestValue" type="{http://www.w3.org/2000/09/xmldsig#}DigestValueType"/>
16: * </pre>
17: *
18: */
19: public interface DigestValue extends javax.xml.bind.Element {
20:
21: /**
22: * Gets the value of the value property.
23: *
24: * @return
25: * possible object is
26: * byte[]
27: */
28: byte[] getValue();
29:
30: /**
31: * Sets the value of the value property.
32: *
33: * @param value
34: * allowed object is
35: * byte[]
36: */
37: void setValue(byte[] value);
38:
39: }
|