I am currently trying to write some LoginModules to enable users to log into a Java application. Here is my .java.login.config file:
"Java Application" {
path.to.login.module.PamLoginModule sufficient;
path.to.login.module.OtherLoginModule sufficient;
};
So if the PamLoginModule fails, I want to pass information to the OtherLoginModule. This way, the OtherLoginModule doesn't have to ask for the user name and password again. So I am guessing that this is what the sharedState Map is for in the initialize() function:
initialize(Subject subject, CallbackHandler callbackHandler,
Map<String,?> sharedState, Map<String,?> options)
The problem is that you can't put things into the sharedState map. If I do something like:
sharedState.put("key", value); // Value is a string
The compiler complains:
path/to/login/module/PamLoginModule.java:48: put(java.lang.String,capture#833 of ?) in java.util.Map<java.lang.String,capture#833 of ?> cannot be applied to (java.lang.String,java.lang.String)
this.sharedState.put("key", value);
I have found a way to get around this, but I want to know what the correct way is.
First, I can use the java 1.4.2 version of initialize which is:
initialize(Subject subject, CallbackHandler callbackHandler, Map sharedState, Map options)
This way I just receive generic maps and I can just cast the Map object to a Map
Map<String,Object> this.sharedState = (Map<String,Object>)sharedState;
The problem is that I still get unchecked cast exceptions. Now, I know the people who made the LoginModule interface aren't stupid, so I am wondering why they made the sharedState map a Map<String,?> as opposed to a Map<String,Object>. Also, is there a better way to put things into the sharedState map?
Thanks!