// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0.6-b27-fcs // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2012.06.11 at 10:34:07 AM PDT // package com.sun.identity.saml2.jaxb.xmlsig; /** * Java content class for X509DataType complex type. *

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/saml2/xmldsig-core-schema.xsd line 186) *

*

 * <complexType name="X509DataType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence maxOccurs="unbounded">
 *         <choice>
 *           <element name="X509IssuerSerial" type="{http://www.w3.org/2000/09/xmldsig#}X509IssuerSerialType"/>
 *           <element name="X509SKI" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
 *           <element name="X509SubjectName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *           <element name="X509Certificate" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
 *           <element name="X509CRL" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
 *           <any/>
 *         </choice>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* */ public interface X509DataType { /** * Gets the value of the X509IssuerSerialOrX509SKIOrX509SubjectName property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the X509IssuerSerialOrX509SKIOrX509SubjectName property. * *

* For example, to add a new item, do as follows: *

     *    getX509IssuerSerialOrX509SKIOrX509SubjectName().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link com.sun.identity.saml2.jaxb.xmlsig.X509DataType.X509SubjectName} * {@link com.sun.identity.saml2.jaxb.xmlsig.X509DataType.X509IssuerSerial} * {@link com.sun.identity.saml2.jaxb.xmlsig.X509DataType.X509Certificate} * {@link java.lang.Object} * {@link com.sun.identity.saml2.jaxb.xmlsig.X509DataType.X509CRL} * {@link com.sun.identity.saml2.jaxb.xmlsig.X509DataType.X509SKI} * */ java.util.List getX509IssuerSerialOrX509SKIOrX509SubjectName(); /** * Java content class for X509CRL element declaration. *

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/saml2/xmldsig-core-schema.xsd line 193) *

*

     * <element name="X509CRL" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
     * 
* */ public interface X509CRL extends javax.xml.bind.Element { /** * Gets the value of the value property. * * @return * possible object is * byte[] */ byte[] getValue(); /** * Sets the value of the value property. * * @param value * allowed object is * byte[] */ void setValue(byte[] value); } /** * Java content class for X509Certificate element declaration. *

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/saml2/xmldsig-core-schema.xsd line 192) *

*

     * <element name="X509Certificate" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
     * 
* */ public interface X509Certificate extends javax.xml.bind.Element { /** * Gets the value of the value property. * * @return * possible object is * byte[] */ byte[] getValue(); /** * Sets the value of the value property. * * @param value * allowed object is * byte[] */ void setValue(byte[] value); } /** * Java content class for X509IssuerSerial element declaration. *

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/saml2/xmldsig-core-schema.xsd line 189) *

*

     * <element name="X509IssuerSerial" type="{http://www.w3.org/2000/09/xmldsig#}X509IssuerSerialType"/>
     * 
* */ public interface X509IssuerSerial extends javax.xml.bind.Element, com.sun.identity.saml2.jaxb.xmlsig.X509IssuerSerialType { } /** * Java content class for X509SKI element declaration. *

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/saml2/xmldsig-core-schema.xsd line 190) *

*

     * <element name="X509SKI" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
     * 
* */ public interface X509SKI extends javax.xml.bind.Element { /** * Gets the value of the value property. * * @return * possible object is * byte[] */ byte[] getValue(); /** * Sets the value of the value property. * * @param value * allowed object is * byte[] */ void setValue(byte[] value); } /** * Java content class for X509SubjectName element declaration. *

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/saml2/xmldsig-core-schema.xsd line 191) *

*

     * <element name="X509SubjectName" type="{http://www.w3.org/2001/XMLSchema}string"/>
     * 
* */ public interface X509SubjectName extends javax.xml.bind.Element { /** * Gets the value of the value property. * * @return * possible object is * {@link java.lang.String} */ java.lang.String getValue(); /** * Sets the value of the value property. * * @param value * allowed object is * {@link java.lang.String} */ void setValue(java.lang.String value); } }