Package org.opensaml.saml2.metadata.provider

Examples of org.opensaml.saml2.metadata.provider.AbstractMetadataProvider.destroy()


     */
    public void destroy() {
        if (getDelegate() instanceof AbstractMetadataProvider) {
            log.debug("Destroying delegate");
            AbstractMetadataProvider provider = (AbstractMetadataProvider) getDelegate();
            provider.destroy();
        } else {
            log.debug("Cannot destroy delegate, doesn't extend AbstractMetadataProvider");
        }
    }

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.