ulrich
2016-12-27 c79c120dae38042f0f5d5c31d9b7413b0a8a3e7e
src/java/de/uhilger/um/api/UserMgr.java
@@ -24,6 +24,7 @@
  public static final String SQL_GET_USER_LIST = "getUserList";
  public static final String SQL_GET_USER_NAME_LIST = "getUserNameList";
  public static final String SQL_GET_ROLE_LIST = "getRoleList";
  public static final String SQL_GET_USER_ROLES = "getUserRoles";
  public static final String SQL_DELETE_USER = "deleteUser";
  
  /* ----------- Benutzer -------------- */
@@ -78,6 +79,20 @@
    return roleNames;
  }
  
  /**
   *
   *
   * list.get(recordno).get(fieldno)
   *
   * @param userId  ID des Benutzers
   * @return List<List<String>> Rollennamen des Benutzers
   */
  public List getUserRoleNames(String userId) {
    String sql = App.getSqlStatement(SQL_GET_USER_ROLES);
    List roleNames = App.getDatabase().select(sql, App.WITHOUT_BLOBS, userId);
    return roleNames;
  }
  /* ------------ sonstige Methoden -------------- */
  
  public String hallo() {