Class WSMappingPropertiesCallback
java.lang.Object
com.ibm.wsspi.security.auth.callback.WSMappingPropertiesCallback
- All Implemented Interfaces:
- Callback
 The WSMappingPropertiesCallback allows a HashMap object to be gathered by
 CallbackHandler and pass it to the LoginModule stack.
 
- Since:
- WAS V6.0
- See Also:
- 
- CallbackHandler
- com.ibm.wsspi.security.auth.callback.WSiMappingCallbackHandler
 
- 
Constructor SummaryConstructorsConstructorDescriptionWSMappingPropertiesCallback(String prompt) Construct aWSMappingPropertiesCallbackobject with a prompt hint.WSMappingPropertiesCallback(String prompt, Map properties) Construct aWSMappingPropertiesCallbackobject with a prompt hint and a Map object instance.
- 
Method SummaryModifier and TypeMethodDescriptionReturn the prompt.Return the properties Map.voidsetProperties(Map properties) Set the properties.toString()Returns the name of the Callback.
- 
Constructor Details- 
WSMappingPropertiesCallbackConstruct a WSMappingPropertiesCallbackobject with a prompt hint.- Parameters:
- prompt- The prompt hint.
 
- 
WSMappingPropertiesCallbackConstruct a WSMappingPropertiesCallbackobject with a prompt hint and a Map object instance.- Parameters:
- prompt- The prompt hint.
- Map- properties
 
 
- 
- 
Method Details- 
setPropertiesSet the properties. - Parameters:
- properties- The properties Map.
 
- 
getPropertiesReturn the properties Map. If the properties object set in Constructor is null, thennullis returned.- Returns:
- The properties Map, could be null.
 
- 
getPromptReturn the prompt. If the prompt set in Constructor is null, thennullis returned.- Returns:
- The prompt, could be null.
 
- 
toStringReturns the name of the Callback. Typically, it is the name of the class. 
 
-