Package com.kurento.kmf.jsonrpcconnector.internal.server.config

Examples of com.kurento.kmf.jsonrpcconnector.internal.server.config.JsonRpcProperties


  public static class KmfJsonRpcProperties {

    @Bean
    public JsonRpcProperties jsonRpcProperties() {

      JsonRpcProperties configuration = new JsonRpcProperties();
      configuration.setKeystoneHost("http://cloud.lab.fi-ware.org");
      return configuration;
    }
View Full Code Here


    registry.addHandler(thriftConnectorJsonRpcHandler(), "/thrift");
  }

  @Bean
  public JsonRpcProperties jsonRpcProperties() {
    JsonRpcProperties configuration = new JsonRpcProperties();
    // Official FI-WARE OAuth server: http://cloud.lab.fi-ware.org
    configuration.setKeystoneHost(env.getProperty("oauthserver.url", ""));
    return configuration;
  }
View Full Code Here

TOP

Related Classes of com.kurento.kmf.jsonrpcconnector.internal.server.config.JsonRpcProperties

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.