Examples of invalidate()


Examples of org.eclipse.jetty.server.session.AbstractSession.invalidate()

    }

    public final void invalidateSession(String clusterId) {
        AbstractSession session = sessions.get(clusterId);
        if (session != null)
            session.invalidate();
    }

    public final void expire(List<String> expired) {
        if (isStopping() || isStopped())
            return;
View Full Code Here

Examples of org.exist.collections.CollectionConfigurationManager.invalidate()

                final String collName = uri.getRawCollectionPath();

                // Notify the collection configuration manager
                final CollectionConfigurationManager manager = pool.getConfigurationManager();
                if(manager != null) {
                    manager.invalidate(uri, getBrokerPool());
                }

                if(LOG.isDebugEnabled()) {
                    LOG.debug("Removing children collections from their parent '" + collName + "'...");
                }
View Full Code Here

Examples of org.exist.http.servlets.SessionWrapper.invalidate()

    if(var.getValue().getItemType() != Type.JAVA_OBJECT)
      {throw new XPathException(this, SessionModule.SESSION_VAR + " is not bound to a Java object.");}
    final JavaObjectValue value = (JavaObjectValue) var.getValue().itemAt(0);
    if(value.getObject() instanceof SessionWrapper) {
      final SessionWrapper session = (SessionWrapper)value.getObject();
      session.invalidate();
      return Sequence.EMPTY_SEQUENCE;
    } else
      {throw new XPathException(this, SessionModule.SESSION_VAR + " is not bound to a session object");}
    }
View Full Code Here

Examples of org.exist.util.io.FilterInputStreamCache.invalidate()

            throw new RestXqServiceException(e.getMessage());
        } finally {

            if(cache != null) {
                try {
                    cache.invalidate();
                } catch(final IOException ioe) {
                    LOG.error(ioe.getMessage(), ioe);
                }
            }
View Full Code Here

Examples of org.fjank.jcache.CacheObject.invalidate()

      }
        CacheObject obj = (CacheObject) acc.getRegion().get(key);
        if(obj==null) {
            return null;
        }
        obj.invalidate();
        return obj.get();
    }
    public Object remove(Object key, String group) {
        if (key==null || group==null) {
      throw new NullPointerException("This Map does not permit null keys.");
View Full Code Here

Examples of org.gudy.azureus2.ui.swt.views.table.impl.FakeTableCell.invalidate()

      final Composite c = new Composite(gColumns, SWT.NONE);
      gridData = new GridData( GridData.FILL_HORIZONTAL);
      gridData.heightHint = 16;
      c.setLayoutData(gridData);
      cell.setControl(c);
      cell.invalidate();
      cell.refresh();
      c.addListener(SWT.MouseHover, new Listener() {
        public void handleEvent(Event event) {
          Object toolTip = cell.getToolTip();
          if (toolTip instanceof String) {
View Full Code Here

Examples of org.gwt.mosaic.ui.client.layout.HasLayoutManager.invalidate()

    public void invalidate() {
      if (target instanceof Widget && !(target instanceof HasLayoutManager)) {
        HasLayoutManager lm = WidgetHelper.getParent((Widget) target);
        if (lm != null) {
          lm.invalidate();
        }
      }
    }

    public synchronized void removePropertyChangeListener(
View Full Code Here

Examples of org.gwt.mosaic.ui.client.layout.LayoutPanel.invalidate()

   */
  public void ensureWidget() {
    if (widget == null) {
      final LayoutPanel layoutPanel = getLayoutPanel();
      layoutPanel.add(widget = createWidget());
      layoutPanel.invalidate(widget);
      DeferredCommand.addCommand(new Command() {
        public void execute() {
          layoutPanel.layout();
        }
      });
View Full Code Here

Examples of org.huihoo.willow.session.WillowSession.invalidate()

    SessionManager manager = namingServer.getEngine().getSessionManager();   
    WillowSession session=manager.findSession(sessionID);
   
    if(session!=null)
    {
      session.invalidate();
    }
  }
 
  public int   getMaxInactiveInterval(String sessionID)throws RemoteException
  {
View Full Code Here

Examples of org.huihoo.workflow.runtime.WorkflowSession.invalidate()

    HttpSession session=event.getSession();
    WorkflowSession workflowSession=(WorkflowSession)session.getAttribute(Constants.WORKFLOW_CLIENT_SESSION);
    if(workflowSession!=null)
    {
      session.removeAttribute(Constants.WORKFLOW_CLIENT_SESSION);
      workflowSession.invalidate();
    }
  }

}
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.