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

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

The newest version!
/*
 * Copyright (c) 2010, 2022 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
 */

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

package com.sun.xml.wss.saml;

/**
 * The SubjectLocality element specifies the DNS domain name
 * and IP address for the system entity that performed the authentication.
 * It exists as part of AuthenticationStatement element.
 *
 * 

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

 * <complexType name="SubjectLocalityType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="DNSAddress" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="IPAddress" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* */ public interface SubjectLocality { }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy