Uses of Class
javax.security.auth.message.AuthStatus
-
Packages that use AuthStatus Package Description com.sun.xml.wss.provider com.sun.xml.wss.provider.wsit javax.security.auth.message This package defines the core interfaces of Jakarta Authentication. -
-
Uses of AuthStatus in com.sun.xml.wss.provider
Methods in com.sun.xml.wss.provider that return AuthStatus Modifier and Type Method Description AuthStatusClientSecurityAuthModule. secureRequest(MessageInfo param, Subject subject)AuthStatusServerSecurityAuthModule. secureResponse(MessageInfo param, Subject subject)AuthStatusServerSecurityAuthModule. validateRequest(MessageInfo param, Subject subject, Subject serviceSubject)AuthStatusClientSecurityAuthModule. validateResponse(MessageInfo param, Subject subject, Subject serviceSubject) -
Uses of AuthStatus in com.sun.xml.wss.provider.wsit
Methods in com.sun.xml.wss.provider.wsit that return AuthStatus Modifier and Type Method Description AuthStatusWSITClientAuthContext. secureRequest(MessageInfo messageInfo, Subject clientSubject)AuthStatusWSITClientAuthModule. secureRequest(MessageInfo messageInfo, Subject clientSubject)AuthStatusWSITServerAuthContext. secureResponse(MessageInfo messageInfo, Subject serviceSubject)AuthStatusWSITServerAuthModule. secureResponse(MessageInfo messageInfo, Subject serviceSubject)AuthStatusWSITServerAuthContext. validateRequest(MessageInfo messageInfo, Subject clientSubject, Subject serviceSubject)AuthStatusWSITServerAuthModule. validateRequest(MessageInfo messageInfo, Subject clientSubject, Subject serviceSubject)AuthStatusWSITClientAuthContext. validateResponse(MessageInfo messageInfo, Subject clientSubject, Subject serviceSubject)AuthStatusWSITClientAuthModule. validateResponse(MessageInfo messageInfo, Subject clientSubject, Subject serviceSubject) -
Uses of AuthStatus in javax.security.auth.message
Fields in javax.security.auth.message declared as AuthStatus Modifier and Type Field Description static AuthStatusAuthStatus. FAILUREIndicates that the message processing by the authentication module was NOT successful, and that the module replaced the application message with an error message.static AuthStatusAuthStatus. SEND_CONTINUEIndicates the message processing by the authentication module is NOT complete, that the module replaced the application message with a security message, and that the runtime is to proceed by sending the security message.static AuthStatusAuthStatus. SEND_FAILUREIndicates that the message processing by the authentication module was NOT successful, that the module replaced the application message with an error message, and that the runtime is to proceed by sending the error message.static AuthStatusAuthStatus. SEND_SUCCESSIndicates that the message processing by the authentication module was successful and that the runtime is to proceed by sending a message returned by the authentication module.static AuthStatusAuthStatus. SUCCESSIndicates that the message processing by the authentication module was successful and that the runtime is to proceed with its normal processing of the resulting message.Methods in javax.security.auth.message that return AuthStatus Modifier and Type Method Description AuthStatusClientAuth. secureRequest(MessageInfo messageInfo, Subject clientSubject)Secure a service request message before sending it to the service.AuthStatusServerAuth. secureResponse(MessageInfo messageInfo, Subject serviceSubject)Secure a service response before sending it to the client.AuthStatusServerAuth. validateRequest(MessageInfo messageInfo, Subject clientSubject, Subject serviceSubject)Authenticate a received service request.AuthStatusClientAuth. validateResponse(MessageInfo messageInfo, Subject clientSubject, Subject serviceSubject)Validate a received service response.
-