Interface IDsucGetMembership


public interface IDsucGetMembership
  • Method Summary

    Modifier and Type
    Method
    Description
    fromId(de.uplanet.jdbc.JdbcConnection p_conn, String p_strObjectGuid)
     
    fromUserId(de.uplanet.jdbc.JdbcConnection p_conn, String p_strUserId)
     
  • Method Details

    • fromUserId

      Set<String> fromUserId(de.uplanet.jdbc.JdbcConnection p_conn, String p_strUserId) throws SQLException, de.uplanet.lucy.usermanager.NotFoundException
      Parameters:
      p_conn - The database connection
      p_strUserId - the user id
      Returns:
      A set containing the unique object identifiers of all positions, organizational units and groups the given user belongs to. The user's unique identifier is also included. (not null)
      Throws:
      SQLException
      de.uplanet.lucy.usermanager.NotFoundException
    • fromId

      Set<String> fromId(de.uplanet.jdbc.JdbcConnection p_conn, String p_strObjectGuid) throws SQLException, de.uplanet.lucy.usermanager.NotFoundException
      Parameters:
      p_conn - The database connection
      p_strObjectGuid - the user id
      Returns:
      A set containing the unique object identifiers of all positions, organizational units and groups the given object belongs to. The object's unique identifier is also included (not null).
      Throws:
      SQLException
      de.uplanet.lucy.usermanager.NotFoundException