Examples of OpenIDPape


Examples of org.wso2.carbon.identity.provider.openid.extensions.OpenIDPape

    } else if (SimpleRegAttributes.NS_SREG.equals(alias)
        || SRegMessage.OPENID_NS_SREG.equals(alias)
        || SimpleRegAttributes.NS_SREG_1.equals(alias)) {
      return new OpenIDSimpleReg(request);
    } else if (PapeMessage.OPENID_NS_PAPE.equals(alias)) {
      return new OpenIDPape(request);
    }

    return null;
  }
View Full Code Here

Examples of org.wso2.carbon.identity.provider.openid.extensions.OpenIDPape

            domainName = TenantUtils.getDomainNameFromOpenId(papeInfoRequestDto.getOpenID());
            tenatUser = UserCoreUtil.getTenantLessUsername(username);

            registry = IdentityTenantUtil.getRegistry(domainName, username);

            OpenIDPape openIDPape = new OpenIDPape(req);
            OpenIDParameterDTO[] policySet = openIDPape.getPapeInfoFromRequest();

            if (policySet[0].getValue().equals("true")) {
                InfoCardDAO infoCardDAO = new InfoCardDAO(registry);
                if (infoCardDAO.getInfoCardsForUser(tenatUser).length < 1) {
                    policySet[0].setValue("false");
View Full Code Here

Examples of org.wso2.carbon.identity.relyingparty.ui.openid.extensions.OpenIDPape

    if (IdentityConstants.OpenId.ATTRIBUTE_EXCHANGE.equals(type)) {
      return new OpenIDAttributeExchange();
    } else if (IdentityConstants.OpenId.SIMPLE_REGISTRATION.equals(type)) {
      return new OpenIDSimpleReg();
    } else if (IdentityConstants.OpenId.PAPE.equals(type)) {
      return new OpenIDPape();
    } else {
      return null;
    }
  }
View Full Code Here

Examples of org.wso2.carbon.identity.relyingparty.ui.openid.extensions.OpenIDPape

    } else if (alias.equals(IdentityConstants.OpenId.SimpleRegAttributes.NS_SREG)
        || alias.equals(SRegMessage.OPENID_NS_SREG)
        || alias.equals(IdentityConstants.OpenId.SimpleRegAttributes.NS_SREG_1)) {
      return new OpenIDSimpleReg(auth);
    } else if (alias.equals(PapeMessage.OPENID_NS_PAPE)) {
      return new OpenIDPape(auth);
    }

    return null;
  }
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.