// // 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:33:54 AM PDT // package com.sun.identity.liberty.ws.common.jaxb.assertion; /** * Java content class for SubjectType 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/liberty/cs-sstc-schema-assertion-01.xsd line 124) *

*

 * <complexType name="SubjectType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <choice>
 *         <sequence>
 *           <element ref="{urn:oasis:names:tc:SAML:1.0:assertion}NameIdentifier"/>
 *           <element ref="{urn:oasis:names:tc:SAML:1.0:assertion}SubjectConfirmation" minOccurs="0"/>
 *         </sequence>
 *         <element ref="{urn:oasis:names:tc:SAML:1.0:assertion}SubjectConfirmation"/>
 *       </choice>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* */ public interface SubjectType { /** * Gets the value of the subjectConfirmation property. * * @return * possible object is * {@link com.sun.identity.liberty.ws.common.jaxb.assertion.SubjectConfirmationElement} * {@link com.sun.identity.liberty.ws.common.jaxb.assertion.SubjectConfirmationType} * {@link com.sun.identity.liberty.ws.common.jaxb.assertion.SubjectConfirmationElement} * {@link com.sun.identity.liberty.ws.common.jaxb.assertion.SubjectConfirmationType} */ com.sun.identity.liberty.ws.common.jaxb.assertion.SubjectConfirmationType getSubjectConfirmation(); /** * Sets the value of the subjectConfirmation property. * * @param value * allowed object is * {@link com.sun.identity.liberty.ws.common.jaxb.assertion.SubjectConfirmationElement} * {@link com.sun.identity.liberty.ws.common.jaxb.assertion.SubjectConfirmationType} * {@link com.sun.identity.liberty.ws.common.jaxb.assertion.SubjectConfirmationElement} * {@link com.sun.identity.liberty.ws.common.jaxb.assertion.SubjectConfirmationType} */ void setSubjectConfirmation(com.sun.identity.liberty.ws.common.jaxb.assertion.SubjectConfirmationType value); /** * Gets the value of the nameIdentifier property. * * @return * possible object is * {@link com.sun.identity.liberty.ws.common.jaxb.assertion.NameIdentifierElement} * {@link com.sun.identity.liberty.ws.common.jaxb.assertion.NameIdentifierType} * {@link com.sun.identity.liberty.ws.common.jaxb.ps.EncryptableNameIdentifierElement} */ com.sun.identity.liberty.ws.common.jaxb.assertion.NameIdentifierType getNameIdentifier(); /** * Sets the value of the nameIdentifier property. * * @param value * allowed object is * {@link com.sun.identity.liberty.ws.common.jaxb.assertion.NameIdentifierElement} * {@link com.sun.identity.liberty.ws.common.jaxb.assertion.NameIdentifierType} * {@link com.sun.identity.liberty.ws.common.jaxb.ps.EncryptableNameIdentifierElement} */ void setNameIdentifier(com.sun.identity.liberty.ws.common.jaxb.assertion.NameIdentifierType value); }