Package com.kurento.kmf.orion.entities

Examples of com.kurento.kmf.orion.entities.QueryContext


   */
  public QueryContextResponse queryContext(String type, String id) {
    OrionContextElement element = new OrionContextElement();
    element.setId(id);
    element.setType(type);
    QueryContext query = new QueryContext(element);
    return sendRequestToOrion(query, QUERY_PATH, QueryContextResponse.class);
  }
View Full Code Here


      String pattern) {
    OrionContextElement element = new OrionContextElement();
    element.setId(pattern);
    element.setPattern(true);
    element.setType(type);
    QueryContext query = new QueryContext(element);
    return sendRequestToOrion(query, QUERY_PATH, QueryContextResponse.class);
  }
View Full Code Here

TOP

Related Classes of com.kurento.kmf.orion.entities.QueryContext

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.