Package org.mobicents.slee.service.common

Examples of org.mobicents.slee.service.common.SimpleCallFlowState.execute()


  private void executeRequestState(RequestEvent event) {
    String callId = ((CallIdHeader) event.getRequest().getHeader(
        CallIdHeader.NAME)).getCallId();
    SessionAssociation sa = (SessionAssociation) cache.get(callId);
    SimpleCallFlowState simpleCallFlowState = getState(sa.getState());
    simpleCallFlowState.execute(event);
  }

  private void executeResponseState(ResponseEvent event) {
    String callId = ((CallIdHeader) event.getResponse().getHeader(
        CallIdHeader.NAME)).getCallId();
View Full Code Here


  private void executeResponseState(ResponseEvent event) {
    String callId = ((CallIdHeader) event.getResponse().getHeader(
        CallIdHeader.NAME)).getCallId();
    SessionAssociation sa = (SessionAssociation) cache.get(callId);
    SimpleCallFlowState simpleCallFlowState = getState(sa.getState());
    simpleCallFlowState.execute(event);
  }

  // public void onAckEvent(RequestEvent event, ActivityContextInterface aci)
  // {
  // if (log.isDebugEnabled()) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.