Package com.ibm.sbt.opensocial.domino.config

Examples of com.ibm.sbt.opensocial.domino.config.OpenSocialContainerConfig


  @Override
  public HttpResponse fetch(HttpRequest request) throws GadgetException {
    String container = request.getContainer();
    ContainerExtPoint extpt = manager.getExtPoint(container);
    if(extpt != null) {
      OpenSocialContainerConfig config = extpt.getContainerConfig();
      Object allowedObj = config.getProperties().get(
          OpenSocialContainerConfig.ALLOW_UNTRUSTED_SSL_CONNECTIONS);
      if(allowedObj instanceof Boolean) {
        Boolean allowed = (Boolean)allowedObj;
        if(allowed) {
          return makeUnsecureFetch(request);
View Full Code Here

TOP

Related Classes of com.ibm.sbt.opensocial.domino.config.OpenSocialContainerConfig

Copyright © 2018 www.massapicom. 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.