-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFixedPathSegments.cs
82 lines (74 loc) · 2.79 KB
/
FixedPathSegments.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
namespace Kombit.Samples.Common
{
/// <summary>
/// Defines string contants to map a request path to a respective file
/// </summary>
public static class FixedPathSegments
{
/// <summary>
/// Constants for the AttributServicesController class
/// </summary>
public static readonly string[] AttributServicesController =
{
"AttributServices", "Anvenderkontekster",
"Aktiveringstidspunkt", "SamlMetadata"
};
/// <summary>
/// Constants for the BrugersystemrollerController class
/// </summary>
public static readonly string[] BrugersystemrollerController =
{
"Brugersystemroller", "Aktiveringstidspunkt",
"Dataafgraensningstyper"
};
/// <summary>
/// Constants for the BrugervendteSystemerController class
/// </summary>
public static readonly string[] BrugervendteSystemerController =
{
"BrugervendteSystemer", "RoleMappings",
"SamlMetadata"
};
/// <summary>
/// Constants for the IdentityProvidersController class
/// </summary>
public static readonly string[] IdentityProvidersController =
{
"IdentityProviders", "Anvenderkontekster",
"Aktiveringstidspunkt", "AssuranceLevel", "Beskrivelse", "KenderRoller", "Mobilvenlig", "Praesentationsnavn",
"SamlMetadata", "IpAddresser"
};
/// <summary>
/// Constants for the JobfunktionsrollerController class
/// </summary>
public static readonly string[] JobfunktionsrollerController =
{
"Jobfunktionsroller", "Aktiveringstidspunkt",
"DelegeretTil"
};
/// <summary>
/// Constants for the AnvendersystemerController class
/// </summary>
public static readonly string[] AnvendersystemerController =
{
"Anvendersystemer", "Anvenderkontekster",
"ImpersonationAssignments", "RoleAssignments", "OcesCertifikater"
};
/// <summary>
/// Constants for the ServiceController class
/// </summary>
public static readonly string[] ServiceController = {"Service", "ServiceMetadata"};
/// <summary>
/// Constants for the ServicesystemrollerController class
/// </summary>
public static readonly string[] ServicesystemrollerController =
{
"Servicesystemroller", "Aktiveringstidspunkt",
"Dataafgraensningstyper"
};
/// <summary>
/// Constants for the StsController class
/// </summary>
public static readonly string[] StsController = {"api", "rest", "wstrust", "v1", "issue"};
}
}