Examples of SAMLSSOConfigAdmin


Examples of org.wso2.carbon.identity.sso.saml.admin.SAMLSSOConfigAdmin

public class SAMLSSOConfigService extends AbstractAdmin{

    private static Log log = LogFactory.getLog(SAMLSSOConfigService.class);

    public boolean addRPServiceProvider(SAMLSSOServiceProviderDTO spDto) throws IdentityException {
        SAMLSSOConfigAdmin configAdmin = new SAMLSSOConfigAdmin(getConfigSystemRegistry());
        return configAdmin.addRelyingPartyServiceProvider(spDto);
    }
View Full Code Here

Examples of org.wso2.carbon.identity.sso.saml.admin.SAMLSSOConfigAdmin

        SAMLSSOConfigAdmin configAdmin = new SAMLSSOConfigAdmin(getConfigSystemRegistry());
        return configAdmin.addRelyingPartyServiceProvider(spDto);
    }

    public SAMLSSOServiceProviderInfoDTO getServiceProviders() throws IdentityException {
        SAMLSSOConfigAdmin configAdmin = new SAMLSSOConfigAdmin(getConfigSystemRegistry());
         return configAdmin.getServiceProviders();
    }
View Full Code Here

Examples of org.wso2.carbon.identity.sso.saml.admin.SAMLSSOConfigAdmin

        }
        throw new IdentityException("Primary Keystore cannot be found.");
    }

    public boolean removeServiceProvider(String issuer) throws IdentityException {
        SAMLSSOConfigAdmin ssoConfigAdmin = new SAMLSSOConfigAdmin(getConfigSystemRegistry());
        return ssoConfigAdmin.removeServiceProvider(issuer);
    }
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.