Package org.teleal.cling.model.action

Examples of org.teleal.cling.model.action.ActionException


  protected void executeActionInvocation(ActionInvocation invocation) {
    if(invocation != null) {
      new ActionCallback.Default(invocation, upnpService.getControlPoint()).run();

      ActionException anException = invocation.getFailure();
      if(anException!= null && anException.getMessage()!=null) {
        logger.warn(anException.getMessage());
      }

      Map<String, ActionArgumentValue> result =  invocation.getOutputMap();
      Map<String, StateVariableValue> mapToProcess = new HashMap<String, StateVariableValue>();
      if(result != null) {
View Full Code Here

TOP

Related Classes of org.teleal.cling.model.action.ActionException

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.