1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.opensaml.ws.soap.soap11;
18
19 import javax.xml.namespace.QName;
20
21 import org.opensaml.ws.soap.common.SOAPObject;
22 import org.opensaml.ws.soap.util.SOAPConstants;
23 import org.opensaml.xml.schema.XSQName;
24
25
26
27
28 public interface FaultCode extends SOAPObject, XSQName {
29
30
31 public static final String DEFAULT_ELEMENT_LOCAL_NAME = "faultcode";
32
33
34 public static final QName DEFAULT_ELEMENT_NAME = new QName(DEFAULT_ELEMENT_LOCAL_NAME);
35
36
37 public static final QName VERSION_MISMATCH = new QName(SOAPConstants.SOAP11_NS, "VersionMismatch",
38 SOAPConstants.SOAP11_PREFIX);
39
40
41 public static final QName MUST_UNDERSTAND = new QName(SOAPConstants.SOAP11_NS, "MustUnderstand",
42 SOAPConstants.SOAP11_PREFIX);
43
44
45 public static final QName SERVER = new QName(SOAPConstants.SOAP11_NS, "Server", SOAPConstants.SOAP11_PREFIX);
46
47
48 public static final QName CLIENT = new QName(SOAPConstants.SOAP11_NS, "Client", SOAPConstants.SOAP11_PREFIX);
49 }