Package net.solosky.maplefetion.event.action.failure

Examples of net.solosky.maplefetion.event.action.failure.SipcFailureEvent


        case SipcStatus.SERVER_UNAVAILABLE: return this.doServerUnavaliable(response);
       
        default
        logger.warn("Unhandled sipc response status, default make action fail. status="
            +response.getStatusCode()+", response="+response);
        return new SipcFailureEvent(FailureType.SIPC_FAIL, response);
      }
    }
View Full Code Here


      return new SuccessEvent();
    }
   
    //401
    protected ActionEvent doNotAuthorized(SipcResponse response) throws FetionException{
      return new SipcFailureEvent(FailureType.SIPC_FAIL, response);
    }
View Full Code Here

      return new SipcFailureEvent(FailureType.SIPC_FAIL, response);
    }
   
    //403
    protected ActionEvent doForbidden(SipcResponse response) throws FetionException{
      return new SipcFailureEvent(FailureType.SIPC_FAIL, response);
    }
View Full Code Here

      return new SipcFailureEvent(FailureType.SIPC_FAIL, response);
    }
   
    //404
    protected ActionEvent doNotFound(SipcResponse response) throws FetionException{
      return new SipcFailureEvent(FailureType.SIPC_FAIL, response);
    }
View Full Code Here

      return this.doBadExtension(response);
    }
   
    //444
    protected ActionEvent doRequestFailureV4(SipcResponse response){
      return new SipcFailureEvent(FailureType.SIPC_FAIL, response);
    }
View Full Code Here

      return new SipcFailureEvent(FailureType.SIPC_FAIL, response);
    }
   
    //486
    protected ActionEvent doBusyHere(SipcResponse response) throws FetionException{
      return new SipcFailureEvent(FailureType.SIPC_FAIL, response);
  }
View Full Code Here

    }
  }
   
    //521
    protected ActionEvent doTaExsit(SipcResponse response) throws FetionException{
      return new SipcFailureEvent(FailureType.SIPC_FAIL, response);
    }
View Full Code Here

      return new SipcFailureEvent(FailureType.SIPC_FAIL, response);
    }
   
    //522
    protected ActionEvent doNoSubscription(SipcResponse response) throws FetionException{
      return new SipcFailureEvent(FailureType.SIPC_FAIL, response);
    }
View Full Code Here

TOP

Related Classes of net.solosky.maplefetion.event.action.failure.SipcFailureEvent

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.