Examples of passivate()


Examples of com.ericsson.ssa.sip.SipApplicationSessionImpl.passivate()

        //remove active sip application session if present and not locked
        SipApplicationSessionImpl sipApplicationSession
            = findSipApplicationSessionFromCacheOnly(id);
        if(sipApplicationSession != null
                && !sipApplicationSession.isForegroundLocked()) {
            sipApplicationSession.passivate();
        }
    }

    /**
     * process the load of a SipApplicationSession
View Full Code Here

Examples of com.ericsson.ssa.sip.SipSessionDialogImpl.passivate()

    public void processLoadReceivedSipSession(String id) {
        //remove active sip session if present and is not locked
        SipSessionDialogImpl sipSession = findSipSessionFromCacheOnly(id);
        if(sipSession != null
                && !sipSession.isForegroundLocked()) {
            sipSession.passivate();
        }
    }
   
    /**
     * find the best version of SipSession
View Full Code Here

Examples of com.ericsson.ssa.sip.timer.ServletTimerImpl.passivate()

        //  call unregisterServletTimerExtraParam()
        activationHelper.unregisterServletTimerMigrationTask(id);
        //remove active timer if present and not locked
        ServletTimerImpl timer = findServletTimerFromCacheOnly(id);
        if(timer != null && !timer.isForegroundLocked()) {       
            timer.passivate();
        }
    }
   
    /**
     * process the loadAdvisory of a Servlet Timer
View Full Code Here

Examples of com.nokia.dempsy.container.internal.LifecycleHelper.passivate()

      assertTrue(invoker.activate(instance, null, "ABC".getBytes()));
      assertTrue("instance was not activated", instance.isActivated);
      assertEquals("ABC", instance.activationValue);

      assertFalse("instance passivated before passivation method called", instance.isPassivated);
      byte[] data = invoker.passivate(instance);
      assertTrue("instance was not passivated", instance.isPassivated);
      assertEquals("ABC", new String(data));
   }

   @Test
View Full Code Here

Examples of gnu.javax.crypto.sasl.IAuthInfoProvider.passivate()

    // ----------------------------------------------------------------------

    try
      {
        authenticator.passivate();
        harness.check(true, "passivate()");
      }
    catch (AuthenticationException x)
      {
        harness.debug(x);
View Full Code Here

Examples of gnu.javax.crypto.sasl.srp.SRPAuthInfoProvider.passivate()

    // ----------------------------------------------------------------------

    try
      {
        authenticator.passivate();
        harness.check(true, "passivate()");
      }
    catch (AuthenticationException x)
      {
        harness.debug(x);
View Full Code Here

Examples of org.amplafi.flow.FlowActivity.passivate()

    @Override
    public FlowValidationResult passivate(boolean verifyValues, FlowStepDirection flowStepDirection) {
        FlowActivity currentActivity = getCurrentActivity();
        if ( currentActivity != null ) {
            currentActivity.refresh();
            return currentActivity.passivate(verifyValues, flowStepDirection);
        }
        return null;
    }
    /**
     * @see org.amplafi.flow.FlowState#getCurrentPage()
View Full Code Here

Examples of org.apache.tapestry5.annotations.PageActivationContext.passivate()

            transformation.addComponentEventHandler(EventConstants.ACTIVATE, 1,
                    "PageActivationContextWorker activate event handler",
                    createActivationHandler(field.getType(), access));
        }

        if (annotation.passivate())
        {
            transformation.addComponentEventHandler(EventConstants.PASSIVATE, 0,
                    "PageActivationContextWorker passivate event handler", createPassivateHandler(access));
        }
View Full Code Here

Examples of org.apache.tapestry5.annotations.PageActivationContext.passivate()

            support.addEventHandler(EventConstants.ACTIVATE, 1,
                    "PageActivationContextWorker activate event handler",
                    createActivationHandler(field.getTypeName(), handle));
        }

        if (annotation.passivate())
        {
            support.addEventHandler(EventConstants.PASSIVATE, 0,
                    "PageActivationContextWorker passivate event handler", createPassivateHandler(handle));
        }
View Full Code Here

Examples of org.apache.tapestry5.annotations.PageActivationContext.passivate()

        {
            support.addEventHandler(EventConstants.ACTIVATE, 1,
                    "PageActivationContextWorker activate event handler", createActivationHandler(handles, typeNames));
        }

        if (firstAnnotation.passivate())
        {
            support.addEventHandler(EventConstants.PASSIVATE, 0,
                    "PageActivationContextWorker passivate event handler", createPassivateHandler(handles));
        }
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.