SignatureValueType.java revision 4b8d88eb610aa1e0bb6ec632f792744b3d6b5f22
0N/A//
698N/A// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0.6-b27-fcs
0N/A// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
0N/A// Any modifications to this file will be lost upon recompilation of the source schema.
0N/A// Generated on: 2012.06.11 at 10:33:54 AM PDT
0N/A//
0N/A
0N/A
0N/Apackage com.sun.identity.liberty.ws.common.jaxb.xmlsig;
0N/A
0N/A
0N/A/**
0N/A * Java content class for SignatureValueType complex type.
0N/A * <p>The following schema fragment specifies the expected content contained within this java content object. (defined at file:/Users/allan/A-SVN/trunk/opensso/products/federation/library/xsd/liberty/xmldsig-core-schema.xsd line 57)
0N/A * <p>
0N/A * <pre>
0N/A * &lt;complexType name="SignatureValueType">
0N/A * &lt;simpleContent>
553N/A * &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>base64Binary">
553N/A * &lt;attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" />
553N/A * &lt;/extension>
0N/A * &lt;/simpleContent>
0N/A * &lt;/complexType>
0N/A * </pre>
0N/A *
0N/A */
0N/Apublic interface SignatureValueType {
0N/A
0N/A
0N/A /**
0N/A * Gets the value of the value property.
0N/A *
0N/A * @return
698N/A * possible object is
0N/A * byte[]
0N/A */
0N/A byte[] getValue();
698N/A
0N/A /**
0N/A * Sets the value of the value property.
0N/A *
* @param value
* allowed object is
* byte[]
*/
void setValue(byte[] value);
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link java.lang.String}
*/
java.lang.String getId();
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link java.lang.String}
*/
void setId(java.lang.String value);
}