05-31-2011 08:38 AM
05-31-2011 03:45 PM
05-31-2011 08:00 PM
1. nothing to do with container provided identity ( realms );Simply because activity does not need to be be used in a container, so independence of that is needed
2. Pluggability is almost impossible for backends like LDAP.Might be, feel free to write a decent indepth proposal (preferably in the form of java code) that takes everything into account, so not only solves your issue.
Who today creates own identity service in every possible system in the company?Maybe you are one of the lucky few where someone else once decided on a one-size-fits-all solution for SSO etc… Many, many companies are not that advanced/progressive etc…
! I observe and wait patiently for a possibility to connect Acitiviti to external identity backend but still eveluate it as impossibleShame on you… feels like complaying and doing nothing… hmmm gives me not so nice feelings..
06-01-2011 04:58 AM
public Boolean execute(CommandContext commandContext) {
return commandContext.getUserManager().checkPassword(user, password);
}
public Boolean checkPassword( String user, String password ) {
User user = findUserById( user );
if ( (user!=null)
&& (password!=null)
&& (password.equals(user.getPassword()))
) {
return true;
}
return false;
}
06-02-2011 06:33 AM
06-02-2011 05:36 PM
06-06-2011 07:53 AM
06-06-2011 08:00 AM
06-06-2011 11:30 AM
06-07-2011 05:39 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.