Friday, August 29, 2008

Creating a Task Assignment Adapter

There are 2 values that you need to specify in Task assignment adapter.



  • "Adapter return value for Key type" :-

  • should be either user or group

    Please note - both user and group are string values in lowercase. These can not be set as a literal text.

    public String getUserType(){
    return "user";
    }

    public String getGroupType() {
    return "group";
    }


  • "Adapter return value for Key" :-

  • should be a valid username (usr_login) in OIM if the key type is user or else should be a valid group name in OIM if the key type is group.

No comments: