com.sun.xml.wss.saml.SubjectConfirmation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webservices-osgi Show documentation
Show all versions of webservices-osgi Show documentation
Metro Web Services Runtime OSGi Bundle
/*
* 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();
}