Searched refs:AuthnSvcException (Results 1 - 16 of 16) sorted by relevance

/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/authnsvc/
H A DAuthnSvcException.java25 * $Id: AuthnSvcException.java,v 1.2 2008/06/25 05:47:06 qcheng Exp $
43 public class AuthnSvcException extends L10NMessageImpl { class in inherits:L10NMessageImpl
46 * Create an <code>AuthnSvcException</code> with a message.
50 public AuthnSvcException(String s) { method in class:AuthnSvcException
59 public AuthnSvcException(Throwable t) { method in class:AuthnSvcException
65 * Constructs a new <code>AuthnSvcException</code> without a nested
78 public AuthnSvcException(String rbName, String errorCode, Object[] args) { method in class:AuthnSvcException
H A DAuthnSvcClient.java57 * @exception AuthnSvcException if authentication service is not available
63 ) throws AuthnSvcException {
74 throw new AuthnSvcException(ex);
80 throw new AuthnSvcException("missingSASLResponse");
82 throw new AuthnSvcException("tooManySASLResponse");
H A DAuthnSvcRequestHandlerImpl.java65 * @exception AuthnSvcException if an error occurs while processing the
68 public Message processRequest(Message request) throws AuthnSvcException {
73 throw new AuthnSvcException("missingSASLRequet");
75 throw new AuthnSvcException("tooManySASLRequet");
98 * @exception AuthnSvcException if an error occurs while processing the
104 throws AuthnSvcException {
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/authnsvc/
H A DAuthnSvcException.java25 * $Id: AuthnSvcException.java,v 1.2 2008/06/25 05:47:06 qcheng Exp $
43 public class AuthnSvcException extends L10NMessageImpl { class in inherits:L10NMessageImpl
46 * Create an <code>AuthnSvcException</code> with a message.
50 public AuthnSvcException(String s) { method in class:AuthnSvcException
59 public AuthnSvcException(Throwable t) { method in class:AuthnSvcException
65 * Constructs a new <code>AuthnSvcException</code> without a nested
78 public AuthnSvcException(String rbName, String errorCode, Object[] args) { method in class:AuthnSvcException
H A DAuthnSvcClient.java57 * @exception AuthnSvcException if authentication service is not available
63 ) throws AuthnSvcException {
74 throw new AuthnSvcException(ex);
80 throw new AuthnSvcException("missingSASLResponse");
82 throw new AuthnSvcException("tooManySASLResponse");
H A DAuthnSvcRequestHandlerImpl.java65 * @exception AuthnSvcException if an error occurs while processing the
68 public Message processRequest(Message request) throws AuthnSvcException {
73 throw new AuthnSvcException("missingSASLRequet");
75 throw new AuthnSvcException("tooManySASLRequet");
98 * @exception AuthnSvcException if an error occurs while processing the
104 throws AuthnSvcException {
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/authnsvc/protocol/
H A DParameter.java37 import com.sun.identity.liberty.ws.authnsvc.AuthnSvcException;
76 * @exception AuthnSvcException if an error occurs while parsing
79 Parameter(Element element) throws AuthnSvcException
84 throw new AuthnSvcException("missingNamePM");
135 void addToParent(Element tfE) throws AuthnSvcException
138 throw new AuthnSvcException("missingNamePM");
H A DPasswordTransforms.java41 import com.sun.identity.liberty.ws.authnsvc.AuthnSvcException;
66 * @exception AuthnSvcException if an error occurs while parsing the
69 PasswordTransforms(Element element) throws AuthnSvcException
90 throw new AuthnSvcException("invalidChildPT");
120 * @exception AuthnSvcException if there is no child
122 void addToParent(Element respE) throws AuthnSvcException
125 throw new AuthnSvcException("noChildPT");
H A DSASLResponse.java46 import com.sun.identity.liberty.ws.authnsvc.AuthnSvcException;
102 * @exception AuthnSvcException if an error occurs while parsing the
105 public SASLResponse(Element element) throws AuthnSvcException {
128 throw new AuthnSvcException("missingStatus");
140 throw new AuthnSvcException("invalidStatusCodeNS");
153 throw new AuthnSvcException("tooManyStatus");
157 throw new AuthnSvcException("tooManyPT");
160 throw new AuthnSvcException("invalidSeq");
165 throw new AuthnSvcException("tooManyData");
167 throw new AuthnSvcException("invalidSe
[all...]
H A DSASLRequest.java40 import com.sun.identity.liberty.ws.authnsvc.AuthnSvcException;
73 * @exception AuthnSvcException if an error occurs while parsing the
76 public SASLRequest(Element element) throws AuthnSvcException {
93 throw new AuthnSvcException("tooManyDataInReq");
95 throw new AuthnSvcException("invalidSeqInReq");
103 throw new AuthnSvcException("tooManyReqAuthnCon");
107 throw new AuthnSvcException("invalidChildReq");
119 throw new AuthnSvcException(msg);
287 * @exception AuthnSvcException if an error occurs while creating the
290 public Element toElement() throws AuthnSvcException {
[all...]
H A DTransform.java47 import com.sun.identity.liberty.ws.authnsvc.AuthnSvcException;
117 static Transform getTransform(Element element) throws AuthnSvcException {
122 throw new AuthnSvcException("missingNameTF");
183 throw new AuthnSvcException("invalidChildTF");
254 * @exception AuthnSvcException if there is 'name' attribute is empty
256 void addToParent(Element ptE) throws AuthnSvcException
259 throw new AuthnSvcException("missingNameTF");
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/authnsvc/protocol/
H A DParameter.java37 import com.sun.identity.liberty.ws.authnsvc.AuthnSvcException;
76 * @exception AuthnSvcException if an error occurs while parsing
79 Parameter(Element element) throws AuthnSvcException
84 throw new AuthnSvcException("missingNamePM");
135 void addToParent(Element tfE) throws AuthnSvcException
138 throw new AuthnSvcException("missingNamePM");
H A DPasswordTransforms.java41 import com.sun.identity.liberty.ws.authnsvc.AuthnSvcException;
66 * @exception AuthnSvcException if an error occurs while parsing the
69 PasswordTransforms(Element element) throws AuthnSvcException
90 throw new AuthnSvcException("invalidChildPT");
120 * @exception AuthnSvcException if there is no child
122 void addToParent(Element respE) throws AuthnSvcException
125 throw new AuthnSvcException("noChildPT");
H A DSASLResponse.java46 import com.sun.identity.liberty.ws.authnsvc.AuthnSvcException;
102 * @exception AuthnSvcException if an error occurs while parsing the
105 public SASLResponse(Element element) throws AuthnSvcException {
128 throw new AuthnSvcException("missingStatus");
140 throw new AuthnSvcException("invalidStatusCodeNS");
153 throw new AuthnSvcException("tooManyStatus");
157 throw new AuthnSvcException("tooManyPT");
160 throw new AuthnSvcException("invalidSeq");
165 throw new AuthnSvcException("tooManyData");
167 throw new AuthnSvcException("invalidSe
[all...]
H A DSASLRequest.java40 import com.sun.identity.liberty.ws.authnsvc.AuthnSvcException;
73 * @exception AuthnSvcException if an error occurs while parsing the
76 public SASLRequest(Element element) throws AuthnSvcException {
93 throw new AuthnSvcException("tooManyDataInReq");
95 throw new AuthnSvcException("invalidSeqInReq");
103 throw new AuthnSvcException("tooManyReqAuthnCon");
107 throw new AuthnSvcException("invalidChildReq");
119 throw new AuthnSvcException(msg);
287 * @exception AuthnSvcException if an error occurs while creating the
290 public Element toElement() throws AuthnSvcException {
[all...]
H A DTransform.java47 import com.sun.identity.liberty.ws.authnsvc.AuthnSvcException;
117 static Transform getTransform(Element element) throws AuthnSvcException {
122 throw new AuthnSvcException("missingNameTF");
183 throw new AuthnSvcException("invalidChildTF");
254 * @exception AuthnSvcException if there is 'name' attribute is empty
256 void addToParent(Element ptE) throws AuthnSvcException
259 throw new AuthnSvcException("missingNameTF");

Completed in 80 milliseconds