Package com.kurento.kmf.content

Examples of com.kurento.kmf.content.HttpRecorderService


   */
  private void initializeRecorders(ServletContext sc) throws ServletException {
    for (String rh : findServices(HttpRecorderHandler.class,
        HttpRecorderService.class)) {
      try {
        HttpRecorderService recorderService = Class.forName(rh)
            .getAnnotation(HttpRecorderService.class);
        if (recorderService != null) {
          String name = recorderService.name().isEmpty() ? rh
              : recorderService.name();
          String path = recorderService.path();
          log.debug("Registering HttpRecorderHandler with name "
              + name + " at path " + path);
          ServletRegistration.Dynamic sr = sc.addServlet(name,
              RecorderHandlerServlet.class);
          sr.addMapping(path);
View Full Code Here

TOP

Related Classes of com.kurento.kmf.content.HttpRecorderService

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.