Examples of invalidate()


Examples of com.badlogic.gdx.scenes.scene2d.Layout.invalidate()

      actor.y = 0;
      actor.width = width;
      actor.height = height;
      if (actor instanceof Layout) {
        Layout layout = (Layout)actor;
        layout.invalidate();
        layout.layout();
      }
    }
  }
View Full Code Here

Examples of com.caucho.quercus.env.SessionArrayValue.invalidate()

        try {
          session.getMaxInactiveInterval();
          _sessions.remove(session.getId());

          session.invalidate();
        } catch (Throwable e) {
          log.log(Level.FINER, e.toString(), e);
        }
      }
    } finally {}
View Full Code Here

Examples of com.dyuproject.openid.RelyingParty.invalidate()

                }

                // Assume a cancel or some other non-successful response
                // from provider failed verification
                relyingParty.invalidate(request, response);

                return handleAuthFailure(OpenIDFailure.AUTHENTICATION, request);

            } else {
View Full Code Here

Examples of com.ecyrd.jspwiki.WikiSession.invalidate()

            log.debug( "Invalidating WikiSession for session ID=" + sid );
        }
        // Retrieve the associated WikiSession and clear the Principal set
        WikiSession wikiSession = WikiSession.getWikiSession( m_engine, request );
        Principal originalPrincipal = wikiSession.getLoginPrincipal();
        wikiSession.invalidate();

        // Remove the wikiSession from the WikiSession cache
        WikiSession.removeWikiSession( m_engine, request );

        // We need to flush the HTTP session too
View Full Code Here

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

                    if (ss.isValid()) {
                        if (logger.isLoggable(Level.FINEST)) {
                            logger.log(Level.FINEST, "Forced invalidation of SipSession involved in a dialog, id: " + ss.getId());
                        }

                        ss.invalidate();
                    }

                    ss.doCleanup();
                }
            } catch (Throwable t) {
View Full Code Here

Examples of com.gitblit.wicket.GitBlitWebSession.invalidate()

  public LogoutPage() {
    super();
    GitBlitWebSession session = GitBlitWebSession.get();
    UserModel user = session.getUser();
    app().authentication().logout(((WebResponse) getResponse()).getHttpServletResponse(), user);
    session.invalidate();

    /*
     * Now check whether the authentication was realized via the Authorization in the header.
     * If so, it is likely to be cached by the browser, and cannot be undone. Effectively, this means
     * that you cannot log out...
View Full Code Here

Examples of com.github.couchapptakeout.ui.EmbeddedBrowser.invalidate()

        } catch (InterruptedException ex) {
            Logger.getLogger(App.class.getName()).log(Level.SEVERE, null, ex);
        }

        browser.setUrl(applicationUrl);
        browser.invalidate();
        browser.validate();
        browser.repaint();
    }

View Full Code Here

Examples of com.hazelcast.map.impl.record.Record.invalidate()

            case NATIVE:
                Iterator<Record> iter = records.values().iterator();
                while (iter.hasNext()) {
                    Record record = iter.next();
                    if (excludeRecords == null || !excludeRecords.containsKey(record.getKey())) {
                        record.invalidate();
                        iter.remove();
                    }
                }
                return;
View Full Code Here

Examples of com.hazelcast.map.record.Record.invalidate()

    }

    public void deleteRecord(Data key) {
        Record record = records.remove(key);
        if (record != null) {
            record.invalidate();
        }
    }

    public Map<Data, Record> getReadonlyRecordMap() {
        return Collections.unmodifiableMap(records);
View Full Code Here

Examples of com.ibm.sbt.opensocial.domino.oauth.DominoOAuth2Accessor.invalidate()

          "OAuth2CallbackServlet accessor is null", "", null, resp,
          null, this.sendTraceToClient);
      return;
    }
    if(!isAccessorValid(accessor, resp)) {
      accessor.invalidate();
      try {
        this.store.removeOAuth2Accessor(accessor);
      } catch (GadgetException e) {
        log.logp(Level.WARNING, CLASS, method, "Error removing invalid accessor.", e);
      }
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.