Examples of VociBusinessObject


Examples of edu.uga.galileo.voci.bo.VociBusinessObject

    Logger.debug("unlocking content by vbo "
        + ContentType.valueOf(vbo.getType()) + "/" + vbo.getId());
    VociBusinessObject[] vbos = new VociBusinessObject[0];
    vbos = vboToSessionMap.keySet().toArray(vbos);

    VociBusinessObject key;
    for (int m = vbos.length - 1; m >= 0; m--) {
      key = vbos[m];
      if ((key.getType() == vbo.getType())
          && (key.getId() == vbo.getId())) {
        vboToSessionMap.remove(key);
      }
    }
  }
View Full Code Here

Examples of edu.uga.galileo.voci.bo.VociBusinessObject

    Logger.debug("unlocking content by type/id "
        + ContentType.valueOf(contentType) + "/" + elementId);
    VociBusinessObject[] vbos = new VociBusinessObject[0];
    vbos = vboToSessionMap.keySet().toArray(vbos);

    VociBusinessObject key;
    for (int m = vbos.length - 1; m >= 0; m--) {
      key = vbos[m];
      if ((key.getType() == contentType) && (key.getId() == elementId)) {
        vboToSessionMap.remove(key);
      }
    }
  }
View Full Code Here

Examples of edu.uga.galileo.voci.bo.VociBusinessObject

  public static synchronized void unlockAllUserContent(User user) {
    Logger.debug("unlocking all user content for " + user.getUserName());
    VociBusinessObject[] vbos = new VociBusinessObject[0];
    vbos = vboToSessionMap.keySet().toArray(vbos);

    VociBusinessObject key;
    for (int m = vbos.length - 1; m >= 0; m--) {
      key = vbos[m];
      if (((User) vboToSessionMap.get(key).getAttribute("user"))
          .getUserId() == user.getUserId()) {
        vboToSessionMap.remove(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.