Examples of removeEntry()


Examples of org.jivesoftware.smack.Roster.removeEntry()

  }

  public void sendRosterRemove(String user) throws XMPPException, IOException {
    final Roster r = getRoster();
    final RosterEntry re = r.getEntry(user);
    r.removeEntry(re);
  }

  /*
   * (non-Javadoc)
   *
 
View Full Code Here

Examples of org.jivesoftware.smack.RosterGroup.removeEntry()

                    int c = 0;
                    Iterator groups = entry.getGroups();
                    while (groups.hasNext()) {
                        RosterGroup g = (RosterGroup) groups.next();
                        if(!g.contains(entry)) continue;
                        g.removeEntry(entry);
                        c++;
                    }

                    buddy.setTempGroup(groupName);
                    SwingUtilities.invokeLater(new Runnable()
View Full Code Here

Examples of org.jresearch.gossip.dao.ForumDAO.removeEntry()

        ForumDAO dao = ForumDAO.getInstance();

        try {
           

            dao.removeEntry(this.updatedLogin);
        } catch (SQLException sqle) {
            getServlet().log("Connection.process", sqle);
        }
    }
View Full Code Here

Examples of org.jresearch.gossip.dao.ForumDAO.removeEntry()

                    IConst.SESSION.USER_KEY);

            try {
                savePermissionGuard(session);
                if (user.getStatus() > 0) {
                    forumdao.removeEntry(user.getName());
                }

                forumdao.addEntry(getCurrentEntry(evt));

                //write message in forum log
View Full Code Here

Examples of org.jresearch.gossip.dao.ForumDAO.removeEntry()

            UserDAO dao = UserDAO.getInstance();
            ForumDAO forumdao = ForumDAO.getInstance();

            try {
                forumdao.removeEntry(session.getId());

                if (user.getStatus() != UserStatus.GUEST) {
                    dao.updateIntime(user.getName());
                }
                //              write message in forum log
View Full Code Here

Examples of org.jresearch.gossip.dao.ForumDAO.removeEntry()

                    IConst.SESSION.USER_KEY);

            try {

                if (user.getStatus() > 0) {
                    forumdao.removeEntry(user.getName());
                }

                if (!forumdao.isEntryExist(session.getId())) {
                    forumdao.addEntry(getCurrentEntry(evt));
                } else {
View Full Code Here

Examples of org.projectforge.user.UserXmlPreferencesCache.removeEntry()

    final Integer userId = user.getId();
    if (UserRights.getAccessChecker().isDemoUser(userId) == true) {
      MySession.get().removeAttribute(key);
    }
    final UserXmlPreferencesCache userXmlPreferencesCache = UserXmlPreferencesCache.getDefaultInstance();
    return userXmlPreferencesCache.removeEntry(userId, key);
  }
}
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.