1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 package org.opensaml.saml2.core;
22
23 import javax.xml.namespace.QName;
24
25 import org.opensaml.common.xml.SAMLConstants;
26
27
28
29
30 public interface LogoutResponse extends StatusResponseType {
31
32
33 public static final String DEFAULT_ELEMENT_LOCAL_NAME = "LogoutResponse";
34
35
36 public static final QName DEFAULT_ELEMENT_NAME = new QName(SAMLConstants.SAML20P_NS, DEFAULT_ELEMENT_LOCAL_NAME,
37 SAMLConstants.SAML20P_PREFIX);
38
39
40 public static final String TYPE_LOCAL_NAME = "LogoutResponseType";
41
42
43 public static final QName TYPE_NAME = new QName(SAMLConstants.SAML20P_NS, TYPE_LOCAL_NAME,
44 SAMLConstants.SAML20P_PREFIX);
45
46
47 public static final String USER_LOGOUT_URI = "urn:oasis:names:tc:SAML:2.0:logout:user";
48
49
50 public static final String ADMIN_LOGOUT_URI = "urn:oasis:names:tc:SAML:2.0:logout:admin";
51
52
53 public static final String GLOBAL_TIMEOUT_URI = "urn:oasis:names:tc:SAML:2.0:logout:global-timeout";
54
55
56 public static final String SP_TIMEOUT_URI = "urn:oasis:names:tc:SAML:2.0:logout:sp-timeout";
57
58 }