Examples of RelyingPartyDO


Examples of org.wso2.carbon.identity.core.model.RelyingPartyDO

  /**
   * {@inheritDoc}
   */
  protected RelyingPartyDO resourceToObject(Resource resource) {
    RelyingPartyDO rp = null;

    if (resource != null) {
      rp = new RelyingPartyDO();
      String path = resource.getPath();
      int index = path.lastIndexOf("/");
      String uuid = path.substring(index);
      String hostName = resource.getProperty(IdentityRegistryResources.PROP_HOST_NAME);
      String alias = resource.getProperty(IdentityRegistryResources.PROP_ALIAS);
      rp.setUuid(uuid);
      rp.setHostName(hostName);
      rp.setHostName(alias);
    }
    return rp;
  }
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.