All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.xml.wss.saml.SubjectConfirmation Maven / Gradle / Ivy

There is a newer version: 4.0.3
Show newest version
/*
 * Copyright (c) 2010, 2018 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Distribution License v. 1.0, which is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

/*
 * SubjectConfirmation.java
 *
 * Created on August 18, 2005, 12:34 PM
 *
 */

package com.sun.xml.wss.saml;

import java.util.List;

/**
 *
 * @author [email protected]
 */
/**
 * The SubjectConfirmation element specifies a subject by specifying data that
 * authenticates the subject.
 *
 * 

The following schema fragment specifies the expected content contained within * SAML SubjectConfirmation element. *

 * <complexType name="SubjectConfirmationType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{urn:oasis:names:tc:SAML:1.0:assertion}ConfirmationMethod" maxOccurs="unbounded"/>
 *         <element ref="{urn:oasis:names:tc:SAML:1.0:assertion}SubjectConfirmationData" minOccurs="0"/>
 *         <element ref="{http://www.w3.org/2000/09/xmldsig#}KeyInfo" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ public interface SubjectConfirmation { /** * Gets the value of the confirmationMethod property. * * @return Objects of the following type(s) allowed in the list {@link java.lang.String } * * */ public List getConfirmationMethod(); /** * Gets the value of the subjectConfirmationData property for SAML 1.1 and SAML 1.0. * * @return object is {@link Object } * */ public Object getSubjectConfirmationDataForSAML11(); /** * Gets the value of the subjectConfirmationData property for SAML 2.0 * * @return object is {@link SubjectConfirmationData } * */ public SubjectConfirmationData getSubjectConfirmationDataForSAML20(); /** * Gets the value of the nameID property for SAML 2.0 * * @return object is {@link NameID } * */ public NameID getNameId(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy