Examples of SSODescriptor


Examples of org.opensaml.saml2.metadata.SSODescriptor

*/
public abstract class SSODescriptorUnmarshaller extends RoleDescriptorUnmarshaller {

    /** {@inheritDoc} */
    protected void processChildElement(XMLObject parentElement, XMLObject childElement) throws UnmarshallingException {
        SSODescriptor descriptor = (SSODescriptor) parentElement;
        if (childElement instanceof ArtifactResolutionService) {
            descriptor.getArtifactResolutionServices().add((ArtifactResolutionService) childElement);
        } else if (childElement instanceof SingleLogoutService) {
            descriptor.getSingleLogoutServices().add((SingleLogoutService) childElement);
        } else if (childElement instanceof ManageNameIDService) {
            descriptor.getManageNameIDServices().add((ManageNameIDService) childElement);
        } else if (childElement instanceof NameIDFormat) {
            descriptor.getNameIDFormats().add((NameIDFormat) childElement);
        } else {
            super.processChildElement(parentElement, childElement);
        }
    }
View Full Code Here

Examples of org.opensaml.saml2.metadata.SSODescriptor

        super(targetNamespaceURI, targetLocalName);
    }

    /** {@inheritDoc} */
    protected void processChildElement(XMLObject parentElement, XMLObject childElement) throws UnmarshallingException {
        SSODescriptor descriptor = (SSODescriptor) parentElement;
        if (childElement instanceof ArtifactResolutionService) {
            descriptor.getArtifactResolutionServices().add((ArtifactResolutionService) childElement);
        } else if (childElement instanceof SingleLogoutService) {
            descriptor.getSingleLogoutServices().add((SingleLogoutService) childElement);
        } else if (childElement instanceof ManageNameIDService) {
            descriptor.getManageNameIDServices().add((ManageNameIDService) childElement);
        } else if (childElement instanceof NameIDFormat) {
            descriptor.getNameIDFormats().add((NameIDFormat) childElement);
        } else {
            super.processChildElement(parentElement, childElement);
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.