Package com.kurento.kmf.repository

Examples of com.kurento.kmf.repository.RepositoryApiConfiguration


    } catch (NoSuchBeanDefinitionException t) {
      log.info(
          "Configuring Repository API. Could not find exacly one bean of class {}. Switching to default configuration ...",
          RepositoryApiConfiguration.class.getSimpleName());
    }
    return new RepositoryApiConfiguration();
  }
View Full Code Here


  @Bean
  public RepositoryApiConfiguration repositoryApiConfiguration() {

    String port = getPort();

    RepositoryApiConfiguration config = new RepositoryApiConfiguration();
    config.setWebappPublicURL("http://localhost:" + port + "/");
    config.setFileSystemFolder("test-files/repository");
    config.setRepositoryType("filesystem");
    return config;
  }
View Full Code Here

TOP

Related Classes of com.kurento.kmf.repository.RepositoryApiConfiguration

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.